diff options
Diffstat (limited to 'src/mailman_pgp/config/tests/test_config.py')
| -rw-r--r-- | src/mailman_pgp/config/tests/test_config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman_pgp/config/tests/test_config.py b/src/mailman_pgp/config/tests/test_config.py index d3ef9ea..74f4eb8 100644 --- a/src/mailman_pgp/config/tests/test_config.py +++ b/src/mailman_pgp/config/tests/test_config.py @@ -16,7 +16,7 @@ # this program. If not, see <http://www.gnu.org/licenses/>. """""" -from unittest import TestCase +import unittest from pkg_resources import resource_filename, resource_string @@ -26,14 +26,14 @@ from mailman_pgp.config.validator import ConfigValidator from mailman_pgp.testing.layers import PGPConfigLayer, PGPLayer -class TestConfig(TestCase): +class TestConfig(unittest.TestCase): layer = PGPConfigLayer def test_name(self): self.assertEqual(config.name, 'pgp') -class TestConfigs(TestCase): +class TestConfigs(unittest.TestCase): layer = PGPLayer def setUp(self): |
