Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
get rid of assertGreater
  • Loading branch information
stebunovd committed Jan 27, 2013
1 parent 40d574c commit 4f1aa81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests.py
Expand Up @@ -11,7 +11,7 @@ def setUp(self):
def test_get_connections(self):
connections = unipag.Connection.list()
self.assertTrue(isinstance(connections, list))
self.assertGreater(len(connections), 0)
self.assertTrue(len(connections) > 0)
for conn in connections:
self.assertTrue(isinstance(conn, unipag.Connection))

Expand Down

0 comments on commit 4f1aa81

Please sign in to comment.