summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_auth_backends.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auth_tests/test_auth_backends.py')
-rw-r--r--tests/auth_tests/test_auth_backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_auth_backends.py b/tests/auth_tests/test_auth_backends.py
index 3d929698c9..0c516dda34 100644
--- a/tests/auth_tests/test_auth_backends.py
+++ b/tests/auth_tests/test_auth_backends.py
@@ -27,7 +27,7 @@ class CountingMD5PasswordHasher(MD5PasswordHasher):
def encode(self, *args, **kwargs):
type(self).calls += 1
- return super(CountingMD5PasswordHasher, self).encode(*args, **kwargs)
+ return super().encode(*args, **kwargs)
class BaseModelBackendTest: