diff options
Diffstat (limited to 'frozen_deps/ecdsa/test_sha3.py')
-rw-r--r-- | frozen_deps/ecdsa/test_sha3.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frozen_deps/ecdsa/test_sha3.py b/frozen_deps/ecdsa/test_sha3.py index 2c6bd15..d30381d 100644 --- a/frozen_deps/ecdsa/test_sha3.py +++ b/frozen_deps/ecdsa/test_sha3.py @@ -8,7 +8,7 @@ try: from gmpy2 import mpz GMPY = True -except ImportError: +except ImportError: # pragma: no cover try: from gmpy import mpz @@ -43,7 +43,7 @@ class TestBytesToInt(unittest.TestCase): int_to_bytes(0, byteorder="middle") [email protected](GMPY == False, reason="requites gmpy or gmpy2") [email protected](GMPY == False, reason="requires gmpy or gmpy2") def test_int_to_bytes_with_gmpy(): assert int_to_bytes(mpz(1)) == b"\x01" |