diff options
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_pgp.py')
| -rw-r--r-- | src/mailman_pgp/pgp/tests/test_pgp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_pgp.py b/src/mailman_pgp/pgp/tests/test_pgp.py index 6ef531e..0acde58 100644 --- a/src/mailman_pgp/pgp/tests/test_pgp.py +++ b/src/mailman_pgp/pgp/tests/test_pgp.py @@ -16,7 +16,7 @@ # this program. If not, see <http://www.gnu.org/licenses/>. """Tests for the module global PGP instance.""" -from unittest import TestCase +import unittest from mailman.app.lifecycle import create_list from mailman.testing.helpers import subscribe @@ -30,7 +30,7 @@ from mailman_pgp.testing.layers import PGPConfigLayer from mailman_pgp.testing.pgp import load_key -class TestPGP(TestCase): +class TestPGP(unittest.TestCase): layer = PGPConfigLayer def setUp(self): |
