Skip to content

Commit

Permalink
Address typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
blast-hardcheese committed Nov 12, 2024
1 parent 61e2384 commit d334422
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ def test_secretbox_easy():
@pytest.mark.parametrize(
("encoder", "decoder"),
[
[bytes, bytearray],
[bytearray, bytes],
[bytearray, bytearray],
(bytes, bytearray),
(bytearray, bytes),
(bytearray, bytearray),
],
)
def test_secretbox_bytearray(encoder, decoder):
def test_secretbox_bytearray(encoder: type[bytes], decoder: type[bytes]):
key = b"\x00" * c.crypto_secretbox_KEYBYTES
msg = b"message"
nonce = b"\x01" * c.crypto_secretbox_NONCEBYTES
Expand Down

0 comments on commit d334422

Please sign in to comment.