diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-29 20:59:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-29 20:59:52 +0200 |
commit | 06bc11635102106fcd9946ceaf0fd8ebd93fc4dd (patch) | |
tree | 56b5dc51c791d44727b2e5dcd2e07fd50129d649 /tests/test_openpgp.py | |
parent | 47495365bc219e90ce54314a4b8b92875de8a9a9 (diff) | |
download | gemato-06bc11635102106fcd9946ceaf0fd8ebd93fc4dd.tar.gz |
Remove leftover debug prints
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'tests/test_openpgp.py')
-rw-r--r-- | tests/test_openpgp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_openpgp.py b/tests/test_openpgp.py index 0c43fc6..51b6445 100644 --- a/tests/test_openpgp.py +++ b/tests/test_openpgp.py @@ -510,7 +510,7 @@ def test_verify_manifest(openpgp_env, manifest_var, key_var, expected): with io.BytesIO(globals()[key_var]) as kf: openpgp_env.import_key(kf) - print(openpgp_env.verify_file(f)) + openpgp_env.verify_file(f) except OpenPGPNoImplementation as e: pytest.skip(str(e)) |