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 a9526fd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/test_bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,14 @@ 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 a9526fd

Please sign in to comment.