Skip to content

Commit 8db528b

Browse files
committed
review change - assertGreater
1 parent 6c49ada commit 8db528b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

irods/test/connection_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_server_version_without_authentication__issue_688(self):
5353
version_tup = non_authenticating_session.server_version_without_auth()
5454

5555
# Test returned value is non-empty "version" tuple, i.e. holds only integer values.
56-
self.assertTrue(len(version_tup) > 0)
56+
self.assertGreater(len(version_tup), 0)
5757
self.assertFalse(any(not isinstance(_, numbers.Integral) for _ in version_tup))
5858

5959
# Test that the older server_version property fails for the unauthorized session object.

0 commit comments

Comments
 (0)