diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-06-11 22:53:44 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-06-11 22:53:44 -0500 |
commit | fe0835805f96539ca1ac737513bb019ddbbfee03 (patch) | |
tree | b113c6a1b45246c430123c9c57a0a10319b88540 /tests/test_bcrypt.py | |
parent | f3280bda0a560fbf4d401bd8edf89b974a97b39c (diff) | |
parent | 15cc4edec22c455f467fa97bb27aa6bbb9deffb4 (diff) | |
download | py-bcrypt-git-fe0835805f96539ca1ac737513bb019ddbbfee03.tar.gz |
Merge pull request #43 from dstufft/cffi1.0
Migrate to using CFFI 1.0
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." |