diff options
Diffstat (limited to 'src/mailman_pgp/model/tests/test_fs_key.py')
| -rw-r--r-- | src/mailman_pgp/model/tests/test_fs_key.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/model/tests/test_fs_key.py b/src/mailman_pgp/model/tests/test_fs_key.py index 18c9a29..61af097 100644 --- a/src/mailman_pgp/model/tests/test_fs_key.py +++ b/src/mailman_pgp/model/tests/test_fs_key.py @@ -17,16 +17,16 @@ """""" import time +import unittest from os.path import exists, join from tempfile import TemporaryDirectory -from unittest import TestCase from mailman_pgp.model.fs_key import FSKey from mailman_pgp.testing.layers import PGPLayer from mailman_pgp.testing.pgp import load_key -class TestFSKey(TestCase): +class TestFSKey(unittest.TestCase): layer = PGPLayer def setUp(self): |
