We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c49ada commit 8db528bCopy full SHA for 8db528b
1 file changed
irods/test/connection_test.py
@@ -53,7 +53,7 @@ def test_server_version_without_authentication__issue_688(self):
53
version_tup = non_authenticating_session.server_version_without_auth()
54
55
# Test returned value is non-empty "version" tuple, i.e. holds only integer values.
56
- self.assertTrue(len(version_tup) > 0)
+ self.assertGreater(len(version_tup), 0)
57
self.assertFalse(any(not isinstance(_, numbers.Integral) for _ in version_tup))
58
59
# Test that the older server_version property fails for the unauthorized session object.
0 commit comments