Skip to content

Commit

Permalink
Update assertEquals to assertEqual
Browse files Browse the repository at this point in the history
Fixes authentication tests for Python >= 3.12.

See: #95
  • Loading branch information
WhyNotHugo committed Jul 22, 2024
1 parent 58f1dab commit 00c9bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def disconnect(self):
def setTest(self, test):
self.test = test
self.assertTrue = self.test.assertTrue
self.assertEquals = self.test.assertEquals
self.assertEqual = self.test.assertEqual
self.fail = self.test.fail

def succeed(self):
Expand Down

0 comments on commit 00c9bad

Please sign in to comment.