Skip to content

Commit

Permalink
Merge pull request #327 from tlsfuzzer/fix-typo
Browse files Browse the repository at this point in the history
fix typo in test_sha3.py
  • Loading branch information
tomato42 committed Dec 28, 2023
2 parents d32cf78 + e8e272d commit 8bb8f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ecdsa/test_sha3.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_int_to_bytes_wrong_endian(self):
int_to_bytes(0, byteorder="middle")


@pytest.mark.skipif(GMPY == False, reason="requites gmpy or gmpy2")
@pytest.mark.skipif(GMPY == False, reason="requires gmpy or gmpy2")
def test_int_to_bytes_with_gmpy():
assert int_to_bytes(mpz(1)) == b"\x01"

Expand Down

0 comments on commit 8bb8f89

Please sign in to comment.