summaryrefslogtreecommitdiff
path: root/src/zope/security/tests/test_simplepolicies.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/security/tests/test_simplepolicies.py')
-rw-r--r--src/zope/security/tests/test_simplepolicies.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zope/security/tests/test_simplepolicies.py b/src/zope/security/tests/test_simplepolicies.py
index fcbc8de..e55d0e3 100644
--- a/src/zope/security/tests/test_simplepolicies.py
+++ b/src/zope/security/tests/test_simplepolicies.py
@@ -24,11 +24,13 @@ class ConformsToIInteraction(object):
def test_class_conforms_to_IInteraction(self):
from zope.interface.verify import verifyClass
+
from zope.security.interfaces import IInteraction
verifyClass(IInteraction, self._getTargetClass())
def test_instance_conforms_to_IInteraction(self):
from zope.interface.verify import verifyObject
+
from zope.security.interfaces import IInteraction
verifyObject(IInteraction, self._makeOne())