diff options
Diffstat (limited to 'src/mailman_pgp/testing/pgp.py')
| -rw-r--r-- | src/mailman_pgp/testing/pgp.py | 4 |
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 |
