From 03db19fb63df5b4adf525361640743d90a7e10e1 Mon Sep 17 00:00:00 2001 From: tkikuchi Date: Tue, 20 Mar 2007 06:36:28 +0000 Subject: Scheme is selected by TAG. Use string not object reference. --- Mailman/testing/test_passwords.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Mailman/testing/test_passwords.py') 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' -- cgit v1.2.3-70-g09d2