summaryrefslogtreecommitdiff
path: root/passlib/tests/test_utils.py
diff options
context:
space:
mode:
authorEli Collins <elic@assurancetechnologies.com>2016-06-22 18:43:06 -0400
committerEli Collins <elic@assurancetechnologies.com>2016-06-22 18:43:06 -0400
commit2538eaac2d65c25df4dd5fac179bd638e901d213 (patch)
treebbe8fa6ff740d7a370aae3c21b275a199d0a44be /passlib/tests/test_utils.py
parent4a99660a68353a1e71b657e05b2aacd2e8c488fd (diff)
downloadpasslib-2538eaac2d65c25df4dd5fac179bd638e901d213.tar.gz
test cleanups
* moved bsdi_crypt needs_update() tests from test_context to bsdi_crypt test * moved bcrypt needs_update() tests from test_context to bcrypt test * removed redundant rounds+context test in HandlerCase, not needed now that .using()+rounds is being tested. * silence some warnings
Diffstat (limited to 'passlib/tests/test_utils.py')
-rw-r--r--passlib/tests/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/passlib/tests/test_utils.py b/passlib/tests/test_utils.py
index 19761ea..ec7fc7e 100644
--- a/passlib/tests/test_utils.py
+++ b/passlib/tests/test_utils.py
@@ -132,7 +132,7 @@ class MiscTest(TestCase):
# generate_password
from passlib.utils import generate_password
- warnings.filterwarnings("ignore", "The function.*generate_password() is deprecated")
+ warnings.filterwarnings("ignore", "The function.*generate_password\(\) is deprecated")
self.assertEqual(len(generate_password(15)), 15)
def test_is_crypt_context(self):