diff options
Diffstat (limited to 'lang/python/tests/t-quick-key-creation.py')
-rwxr-xr-x | lang/python/tests/t-quick-key-creation.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lang/python/tests/t-quick-key-creation.py b/lang/python/tests/t-quick-key-creation.py index 47209288..b3303fff 100755 --- a/lang/python/tests/t-quick-key-creation.py +++ b/lang/python/tests/t-quick-key-creation.py @@ -80,8 +80,11 @@ with support.EphemeralContext() as ctx: "Primary keys expiration time is off" # Check capabilities - for sign, encrypt, certify, authenticate in itertools. - product([False, True], [False, True], [False, True], [False, True]): + for sign, encrypt, certify, authenticate \ + in itertools.product([False, True], + [False, True], + [False, True], + [False, True]): # Filter some out if not (sign or encrypt or certify or authenticate): # This triggers the default capabilities tested before. |