diff options
Diffstat (limited to 'src/mailman_pgp/pgp/tests/test_keygen.py')
| -rw-r--r-- | src/mailman_pgp/pgp/tests/test_keygen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/pgp/tests/test_keygen.py b/src/mailman_pgp/pgp/tests/test_keygen.py index 7de1a19..b3c6070 100644 --- a/src/mailman_pgp/pgp/tests/test_keygen.py +++ b/src/mailman_pgp/pgp/tests/test_keygen.py @@ -16,8 +16,8 @@ # this program. If not, see <http://www.gnu.org/licenses/>. """Test the out-of-process key generator.""" +import unittest from os.path import exists, isfile -from unittest import TestCase from mailman.app.lifecycle import create_list from parameterized import parameterized @@ -31,7 +31,7 @@ from mailman_pgp.testing.layers import PGPConfigLayer from mailman_pgp.utils.pgp import key_from_file -class TestKeygen(TestCase): +class TestKeygen(unittest.TestCase): layer = PGPConfigLayer def setUp(self): |
