From d334422757b0c312ecc39e8468d542c826c8ede3 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Tue, 12 Nov 2024 12:04:30 -0800 Subject: [PATCH] Address typing error --- tests/test_bindings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_bindings.py b/tests/test_bindings.py index 99c4f651..099f832f 100644 --- a/tests/test_bindings.py +++ b/tests/test_bindings.py @@ -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