diff options
Diffstat (limited to 'tests/test_bcrypt.py')
-rw-r--r-- | tests/test_bcrypt.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_bcrypt.py b/tests/test_bcrypt.py index 5793811..c91a62e 100644 --- a/tests/test_bcrypt.py +++ b/tests/test_bcrypt.py @@ -7,11 +7,6 @@ import six import bcrypt -def test_raise_implicit_compile(): - with pytest.raises(RuntimeError): - bcrypt._compile_module() - - def test_gensalt_basic(monkeypatch): monkeypatch.setattr(os, "urandom", lambda n: b"0000000000000000") assert bcrypt.gensalt() == b"$2a$12$KB.uKB.uKB.uKB.uKB.uK." |