diff options
| author | Tim Graham <timograham@gmail.com> | 2015-06-15 09:43:35 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-06-18 08:36:50 -0400 |
| commit | 7f1168e387dc1db70b6093cfd23a4a6978f48109 (patch) | |
| tree | c3a9f335536fa078d39ad43458feaeac990e3538 /tests/auth_tests | |
| parent | e5cb4e14118f3a508e3bc00ee7cd50bb0f18a61d (diff) | |
Removed support for Python 3.3.
Diffstat (limited to 'tests/auth_tests')
| -rw-r--r-- | tests/auth_tests/test_hashers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_hashers.py b/tests/auth_tests/test_hashers.py index 993010b2f4..58fbf2a0c7 100644 --- a/tests/auth_tests/test_hashers.py +++ b/tests/auth_tests/test_hashers.py @@ -353,7 +353,7 @@ class TestUtilsHashPass(SimpleTestCase): def test_load_library_importerror(self): PlainHasher = type(str('PlainHasher'), (BasePasswordHasher,), {'algorithm': 'plain', 'library': 'plain'}) - # Python 3.3 adds quotes around module name + # Python 3 adds quotes around module name with six.assertRaisesRegex(self, ValueError, "Couldn't load 'PlainHasher' algorithm library: No module named '?plain'?"): PlainHasher()._load_library() |
