From 9cf73e0c42705acfb44d614a0d3140425bbe3550 Mon Sep 17 00:00:00 2001 From: Martijn de Milliano Date: Tue, 30 Jun 2026 18:55:36 +0200 Subject: [PATCH] Update skip reason for test_encrypt_short_tag --- tests/test_aesgcmstream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_aesgcmstream.py b/tests/test_aesgcmstream.py index 97c63b5..d58b427 100644 --- a/tests/test_aesgcmstream.py +++ b/tests/test_aesgcmstream.py @@ -45,7 +45,7 @@ if _lib.AESGCM_STREAM_ENABLED: gcmdec.final(authTag) assert bufdec == t2b("hello world") - @pytest.mark.skipif(12 < _lib.MIN_AUTH_TAG_SZ, reason="test can only be performed when MIN_AUTH_TAG_SZ is larger than 12") + @pytest.mark.skipif(12 < _lib.MIN_AUTH_TAG_SZ, reason="test can only be performed when MIN_AUTH_TAG_SZ <= 12") def test_encrypt_short_tag(): """Known answer encrypt-decrypt test with specific authentication tag size of 12 bytes""" key = "fedcba9876543210"