aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/pgp/tests/test_wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_wrapper.py')
-rw-r--r--src/mailman_pgp/pgp/tests/test_wrapper.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_wrapper.py b/src/mailman_pgp/pgp/tests/test_wrapper.py
index 14f40fc..6e8715c 100644
--- a/src/mailman_pgp/pgp/tests/test_wrapper.py
+++ b/src/mailman_pgp/pgp/tests/test_wrapper.py
@@ -17,7 +17,6 @@
"""Tests for the combined wrapper."""
from parameterized import parameterized
-from public import public
from mailman_pgp.pgp.tests.base import load_key, load_message, WrapperTestCase
from mailman_pgp.pgp.wrapper import PGPWrapper
@@ -27,7 +26,6 @@ class PGPWrapperTestCase(WrapperTestCase):
wrapper = PGPWrapper
-@public
class TestSigning(PGPWrapperTestCase):
@parameterized.expand([
(load_message('inline_cleartext_signed.eml'),
@@ -77,7 +75,6 @@ class TestSigning(PGPWrapperTestCase):
self.verify(message, key, valid)
-@public
class TestEncryption(PGPWrapperTestCase):
@parameterized.expand([
(load_message('inline_encrypted.eml'),
@@ -131,7 +128,6 @@ class TestEncryption(PGPWrapperTestCase):
self.decrypt(message, key, clear)
-@public
class TestKeys(PGPWrapperTestCase):
@parameterized.expand([
(load_message('inline_privkey.eml'),
@@ -166,7 +162,6 @@ class TestKeys(PGPWrapperTestCase):
self.keys(message, keys)
-@public
class TestCombined(PGPWrapperTestCase):
@parameterized.expand([
(load_message('clear.eml'),