aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_aes.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/test_aes.py')
-rw-r--r--tests/hazmat/primitives/test_aes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py
index 173075d6..003b3ba0 100644
--- a/tests/hazmat/primitives/test_aes.py
+++ b/tests/hazmat/primitives/test_aes.py
@@ -226,5 +226,5 @@ class TestAESModeGCM(object):
"gcmEncryptExtIV256.rsp",
],
lambda key: algorithms.AES(key),
- lambda iv, tag: modes.GCM(iv, tag),
+ lambda iv, tag, min_tag_length=16: modes.GCM(iv, tag, min_tag_length),
)