Skip to content

Commit cae1b82

Browse files
committed
rename assertNotEquals to assertNotEqual
unittest renamed it and depricated assertNotEquals after 3.12
1 parent ec2f58d commit cae1b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/standard/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def test_bad_contact_point(self):
133133

134134
# verify the un-existing host was filtered
135135
for host in self.cluster.metadata.all_hosts():
136-
self.assertNotEquals(host.endpoint.address, '126.0.0.186')
136+
self.assertNotEqual(host.endpoint.address, '126.0.0.186')
137137

138138

139139
class SchemaMetadataTests(BasicSegregatedKeyspaceUnitTestCase):

0 commit comments

Comments
 (0)