aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/pgp/tests/test_inline.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_inline.py')
-rw-r--r--src/mailman_pgp/pgp/tests/test_inline.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_inline.py b/src/mailman_pgp/pgp/tests/test_inline.py
index a89963a..0a012f7 100644
--- a/src/mailman_pgp/pgp/tests/test_inline.py
+++ b/src/mailman_pgp/pgp/tests/test_inline.py
@@ -18,7 +18,6 @@
"""Tests for the inline wrapper."""
from parameterized import parameterized
-from public import public
from mailman_pgp.pgp.inline import InlineWrapper
from mailman_pgp.pgp.tests.base import load_key, load_message, WrapperTestCase
@@ -28,7 +27,6 @@ class InlineWrapperTestCase(WrapperTestCase):
wrapper = InlineWrapper
-@public
class TestSigning(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_cleartext_signed.eml'),
@@ -85,7 +83,6 @@ class TestSigning(InlineWrapperTestCase):
self.verify(message, key, valid)
-@public
class TestEncryption(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_encrypted.eml'),
@@ -137,7 +134,6 @@ class TestEncryption(InlineWrapperTestCase):
self.decrypt(message, key, clear)
-@public
class TestKeys(InlineWrapperTestCase):
@parameterized.expand([
(load_message('inline_privkey.eml'),
@@ -162,7 +158,6 @@ class TestKeys(InlineWrapperTestCase):
self.keys(message, keys)
-@public
class TestCombined(InlineWrapperTestCase):
@parameterized.expand([
(load_message('clear.eml'),