Skip to content

Commit 5aa20f8

Browse files
committed
Update assertEquals to assertEqual
Fixes authentication tests for Python >= 3.12. See: #95
1 parent 0e1d9f6 commit 5aa20f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_authentication.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def disconnect(self):
427427
def setTest(self, test):
428428
self.test = test
429429
self.assertTrue = self.test.assertTrue
430-
self.assertEquals = self.test.assertEquals
430+
self.assertEqual = self.test.assertEqual
431431
self.fail = self.test.fail
432432

433433
def succeed(self):

0 commit comments

Comments
 (0)