mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
Replace assertEquals with assertEqual.
This commit is contained in:
parent
e5edaf3b5d
commit
55ab5c6961
1 changed files with 1 additions and 1 deletions
|
|
@ -279,7 +279,7 @@ class AccessAttemptTest(DefenderTestCase):
|
|||
"""
|
||||
Test that the lowercase(None) returns None.
|
||||
"""
|
||||
self.assertEquals(utils.lower_username(None), None)
|
||||
self.assertEqual(utils.lower_username(None), None)
|
||||
|
||||
def test_cooling_off(self):
|
||||
""" Tests if the cooling time allows a user to login
|
||||
|
|
|
|||
Loading…
Reference in a new issue