Skip to content

Commit

Permalink
Correct data type in PyflareTest::test_stats
Browse files Browse the repository at this point in the history
  • Loading branch information
jlinn committed Sep 25, 2014
1 parent ff05be5 commit 72df82e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pyflare_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def setUp(self):
@mock_response_client
def test_stats(self):
response = self.pyflare.stats('example.com', 40)
self.assertIsInstance(response['response']['result']['timeZero'], long)
self.assertIsInstance(response['response']['result']['timeZero'], int)

@mock_response_client
def test_zone_load_multi(self):
Expand Down

0 comments on commit 72df82e

Please sign in to comment.