summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--passlib/tests/test_ext_django.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/passlib/tests/test_ext_django.py b/passlib/tests/test_ext_django.py
index e8ae175..79d19df 100644
--- a/passlib/tests/test_ext_django.py
+++ b/passlib/tests/test_ext_django.py
@@ -503,7 +503,8 @@ class DjangoBehaviorTest(_ExtensionTest):
if not registry.has_backend(handler):
# TODO: move this above get_handler_case(),
# and omit MissingBackendError check.
- assert scheme in ["django_bcrypt", "django_bcrypt_sha256"], "%r scheme should always have active backend" % scheme
+ assert scheme in ["django_bcrypt", "django_bcrypt_sha256", "django_argon2"], \
+ "%r scheme should always have active backend" % scheme
continue
try:
secret, hash = sample_hashes[scheme]