summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_hashers.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-01-03 07:47:04 +0100
committerGitHub <noreply@github.com>2020-01-03 07:47:04 +0100
commit1960d55f8baa412b43546d15a8342554808fff57 (patch)
tree1611612567dfc209f57df33440bcb19ac84be29f /tests/auth_tests/test_hashers.py
parente3d546a1d986f83d8698c32e13afd048b65d06eb (diff)
Refs #31040 -- Fixed crypt.crypt() call in test_hashers.py.
An empty string is invalid salt in Python 3 and raises exception since Python 3.9, see https://bugs.python.org/issue38402.
Diffstat (limited to 'tests/auth_tests/test_hashers.py')
-rw-r--r--tests/auth_tests/test_hashers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_hashers.py b/tests/auth_tests/test_hashers.py
index 5efc179f59..a837c967a7 100644
--- a/tests/auth_tests/test_hashers.py
+++ b/tests/auth_tests/test_hashers.py
@@ -16,7 +16,7 @@ except ImportError:
crypt = None
else:
# On some platforms (e.g. OpenBSD), crypt.crypt() always return None.
- if crypt.crypt('', '') is None:
+ if crypt.crypt('') is None:
crypt = None
try: