From 037ec1054ca8c08e65307f53e5851fe50ac5e8bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Wed, 9 Oct 2013 14:20:37 +0300 Subject: [PATCH] [1.4.x] Fixed #21248 -- Skipped test_bcrypt if no py-bcrypt found Pre 1.6 Django worked only with py-bcrypt, not with bcrypt. Skipped test_bcrypt when using bcrypt to avoid false positives. Backpatch of 9f8a36eb20895d9e542820d5190bfa77ad1b85d9 from stable/1.5.x. --- django/contrib/auth/tests/hashers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/django/contrib/auth/tests/hashers.py b/django/contrib/auth/tests/hashers.py index bf68c45a1b..cf383e3da1 100644 --- a/django/contrib/auth/tests/hashers.py +++ b/django/contrib/auth/tests/hashers.py @@ -14,6 +14,10 @@ except ImportError: try: import bcrypt + # Django 1.4 works only with py-bcrypt, not with bcrypt. py-bcrypt has + # '_bcrypt' attribute, bcrypt doesn't. + if not hasattr(bcrypt, '_bcrypt'): + bcrypt = None except ImportError: bcrypt = None