diff options
Diffstat (limited to 'python/tests/utils_test.py')
-rw-r--r-- | python/tests/utils_test.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/utils_test.py b/python/tests/utils_test.py index a552d12..9d22157 100644 --- a/python/tests/utils_test.py +++ b/python/tests/utils_test.py @@ -2,16 +2,16 @@ import base64 import hashlib from future.utils import bytes_to_native_str -from hypothesis import given -from hypothesis.strategies import text from olm import sha256 from olm._compat import to_bytes class TestClass(object): - @given(text(), text()) - def test_sha256(self, input1, input2): + def test_sha256(self): + input1 = "It's a secret to everybody" + input2 = "It's a secret to nobody" + first_hash = sha256(input1) second_hash = sha256(input2) |