diff options
| -rw-r--r-- | Mailman/testing/test_passwords.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mailman/testing/test_passwords.py b/Mailman/testing/test_passwords.py index 1d4899f8f..b957b10ae 100644 --- a/Mailman/testing/test_passwords.py +++ b/Mailman/testing/test_passwords.py @@ -98,23 +98,23 @@ class TestBogusPasswords(TestPasswordsBase): class TestNonePasswords(TestBogusPasswords): - scheme = passwords.Schemes.no_scheme + scheme = 'no_scheme' class TestCleartextPasswords(TestPasswordsBase): - scheme = passwords.Schemes.cleartext + scheme = 'cleartext' class TestSHAPasswords(TestPasswordsBase): - scheme = passwords.Schemes.sha + scheme = 'sha' class TestSSHAPasswords(TestPasswordsBase): - scheme = passwords.Schemes.ssha + scheme = 'ssha' class TestPBKDF2Passwords(TestPasswordsBase): - scheme = passwords.Schemes.pbkdf2 + scheme = 'pbkdf2' |
