summaryrefslogtreecommitdiff
path: root/tests/test_registry.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_registry.py')
-rw-r--r--tests/test_registry.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_registry.py b/tests/test_registry.py
index f35a54dba..aee4f0e15 100644
--- a/tests/test_registry.py
+++ b/tests/test_registry.py
@@ -1,4 +1,6 @@
import unittest
+from zope.interface import Interface
+from zope.interface import implementer
class TestRegistry(unittest.TestCase):
@@ -441,10 +443,6 @@ class DummyIntrospectable(object):
return hash((self.category_name,) + (self.discriminator,))
-from zope.interface import Interface
-from zope.interface import implementer
-
-
class IDummyEvent(Interface):
pass