aboutsummaryrefslogtreecommitdiffstats
path: root/lang/python/tests/t-decrypt.py
diff options
context:
space:
mode:
authorBen McGinnes <[email protected]>2018-12-05 14:53:08 +0000
committerBen McGinnes <[email protected]>2018-12-05 14:53:08 +0000
commitad030234b4b50f1152731a17c54a53be2f2e0c25 (patch)
treeed74ac05d1ce4ff28fd13ee8d02ee11686e93051 /lang/python/tests/t-decrypt.py
parentpython: examples (diff)
parentpython: overhaul logic of Context.decrypt() (diff)
downloadgpgme-ad030234b4b50f1152731a17c54a53be2f2e0c25.tar.gz
gpgme-ad030234b4b50f1152731a17c54a53be2f2e0c25.zip
Merge branch 'master' of ssh+git://playfair.gnupg.org/git/gpgme
Diffstat (limited to 'lang/python/tests/t-decrypt.py')
-rwxr-xr-xlang/python/tests/t-decrypt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/tests/t-decrypt.py b/lang/python/tests/t-decrypt.py
index 44743da7..c72b51ab 100755
--- a/lang/python/tests/t-decrypt.py
+++ b/lang/python/tests/t-decrypt.py
@@ -38,7 +38,7 @@ support.print_data(sink)
# Idiomatic interface.
with gpg.Context() as c:
- plaintext, _, _ = c.decrypt(open(support.make_filename("cipher-1.asc")))
+ plaintext, _, _ = c.decrypt(open(support.make_filename("cipher-1.asc")), verify=False)
assert len(plaintext) > 0
assert plaintext.find(b'Wenn Sie dies lesen k') >= 0, \
'Plaintext not found'