python3.pkgs.gpgme: fix a test

This is a python counterpart of commit db6b3e0a5ec77; /cc PR #180336
This commit is contained in:
Vladimír Čunát 2022-07-08 08:55:06 +02:00
parent 8e1f71ebce
commit add0201f35
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -9,3 +9,23 @@
{
fprintf (stderr, "%s:%i: Double plaintext message not detected\n",
PGM, __LINE__);
--- a/lang/python/tests/t-verify.py
+++ b/lang/python/tests/t-verify.py
@@ -142,7 +142,7 @@
c.op_verify(sig, None, text)
except Exception as e:
assert type(e) == gpg.errors.GPGMEError
- assert e.getcode() == gpg.errors.BAD_DATA
+ assert e.getcode() != gpg.errors.NO_ERROR
else:
assert False, "Expected an error but got none."
@@ -178,7 +178,7 @@
try:
c.verify(double_plaintext_sig)
except gpg.errors.GPGMEError as e:
- assert e.getcode() == gpg.errors.BAD_DATA
+ assert e.getcode() != gpg.errors.NO_ERROR
else:
assert False, "Expected an error but got none."