diff options
Diffstat (limited to 'src/mailman_pgp/model/tests/test_db_key.py')
| -rw-r--r-- | src/mailman_pgp/model/tests/test_db_key.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/model/tests/test_db_key.py b/src/mailman_pgp/model/tests/test_db_key.py index 46cc487..3041f0c 100644 --- a/src/mailman_pgp/model/tests/test_db_key.py +++ b/src/mailman_pgp/model/tests/test_db_key.py @@ -16,7 +16,7 @@ # this program. If not, see <http://www.gnu.org/licenses/>. """""" -from unittest import TestCase +import unittest from mailman_pgp.config import config from mailman_pgp.database import transaction @@ -25,7 +25,7 @@ from mailman_pgp.testing.layers import PGPConfigLayer from mailman_pgp.testing.pgp import load_key -class TestDBKey(TestCase): +class TestDBKey(unittest.TestCase): layer = PGPConfigLayer def test_key(self): |
