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 b98f6aa commit 0aff86c
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 @@ -427,7 +427,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 0aff86c

Please sign in to comment.