Revision: 8167
http://svn.sourceforge.net/mailman/?rev=8167&view=rev
Author: tkikuchi
Date: 2007-03-19 23:36:28 -0700 (Mon, 19 Mar 2007)
Log Message:
-----------
Scheme is selected by TAG. Use string not object reference.
Modified Paths:
--------------
trunk/mailman/Mailman/testing/test_passwords.py
Modified: trunk/mailman/Mailman/testing/test_passwords.py
===================================================================
--- trunk/mailman/Mailman/testing/test_passwords.py 2007-03-10 06:03:16 UTC
(rev 8166)
+++ trunk/mailman/Mailman/testing/test_passwords.py 2007-03-20 06:36:28 UTC
(rev 8167)
@@ -98,23 +98,23 @@
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'
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org