Skip to content

Commit b4600f4

Browse files
0.1.7 unit tests fix
1 parent 7d77f46 commit b4600f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_iterate.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
from datetime import datetime, timedelta
3+
import requests
34
import sys
45
import unittest
56

@@ -20,7 +21,7 @@ def test_response(self):
2021
self.assertLess(version_date, previous)
2122
previous = version_date
2223
# check status
23-
self.assertIsInstance(response, str)
24+
self.assertIsInstance(response, requests.Response)
2425

2526
#def test_now(self):
2627
# print("test_now")

0 commit comments

Comments
 (0)