aboutsummaryrefslogtreecommitdiff
path: root/src/mailman_pgp/testing
diff options
context:
space:
mode:
authorJ08nY2017-08-21 21:25:25 +0200
committerJ08nY2017-08-21 21:25:25 +0200
commit28b35f7b5cac0a3d2950bdc8077f5223dd6318c3 (patch)
tree481c3cb8e2293facb91e7fee4be2db5dabd1214c /src/mailman_pgp/testing
parentc21e5e0e2841e1d516ffe75717b10c09ef3489ba (diff)
downloadmailman-pgp-28b35f7b5cac0a3d2950bdc8077f5223dd6318c3.tar.gz
mailman-pgp-28b35f7b5cac0a3d2950bdc8077f5223dd6318c3.tar.zst
mailman-pgp-28b35f7b5cac0a3d2950bdc8077f5223dd6318c3.zip
Diffstat (limited to 'src/mailman_pgp/testing')
-rw-r--r--src/mailman_pgp/testing/pgp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/testing/pgp.py b/src/mailman_pgp/testing/pgp.py
index 89f7a98..afb62c8 100644
--- a/src/mailman_pgp/testing/pgp.py
+++ b/src/mailman_pgp/testing/pgp.py
@@ -18,9 +18,9 @@
""""""
import os
+import unittest
from email import message_from_bytes
from operator import attrgetter
-from unittest import TestCase
from mailman.email.message import Message
from pgpy import PGPKey
@@ -71,7 +71,7 @@ def payload_equal(one_msg, other_msg):
return one_payload == other_payload
-class WrapperTestCase(TestCase):
+class WrapperTestCase(unittest.TestCase):
layer = PGPLayer
wrapper = None
maxDiff = None