Skip to content

Commit 72df82e

Browse files
committed
Correct data type in PyflareTest::test_stats
1 parent ff05be5 commit 72df82e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pyflare_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def setUp(self):
1212
@mock_response_client
1313
def test_stats(self):
1414
response = self.pyflare.stats('example.com', 40)
15-
self.assertIsInstance(response['response']['result']['timeZero'], long)
15+
self.assertIsInstance(response['response']['result']['timeZero'], int)
1616

1717
@mock_response_client
1818
def test_zone_load_multi(self):

0 commit comments

Comments
 (0)