mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Refs #23919 -- Removed misc Python 2/3 references.
This commit is contained in:
parent
11856ea44e
commit
1c466994d9
22 changed files with 62 additions and 115 deletions
|
@ -434,7 +434,6 @@ class TestUtilsHashPass(SimpleTestCase):
|
|||
|
||||
def test_load_library_importerror(self):
|
||||
PlainHasher = type('PlainHasher', (BasePasswordHasher,), {'algorithm': 'plain', 'library': 'plain'})
|
||||
# Python 3 adds quotes around module name
|
||||
msg = "Couldn't load 'PlainHasher' algorithm library: No module named 'plain'"
|
||||
with self.assertRaisesMessage(ValueError, msg):
|
||||
PlainHasher()._load_library()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue