summaryrefslogtreecommitdiff
path: root/tests/test_registry.py
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2020-07-12 16:52:48 -0700
committerBert JW Regeer <bertjw@regeer.org>2020-07-12 16:52:48 -0700
commita920c2530c130688c5d01ed999a43ccf0cb012fa (patch)
tree43ab0c4b6db6c05418340e9e18f188e09a02f9ff /tests/test_registry.py
parent4481cfeef8b2fd90a485f2f871e9689750b48220 (diff)
downloadpyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.gz
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.tar.bz2
pyramid-a920c2530c130688c5d01ed999a43ccf0cb012fa.zip
Run isort 5.x across code base
Diffstat (limited to 'tests/test_registry.py')
-rw-r--r--tests/test_registry.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_registry.py b/tests/test_registry.py
index 022cc5ba1..125b22a9f 100644
--- a/tests/test_registry.py
+++ b/tests/test_registry.py
@@ -100,8 +100,8 @@ class TestIntrospector(unittest.TestCase):
return self._getTargetClass()()
def test_conformance(self):
- from zope.interface.verify import verifyClass
- from zope.interface.verify import verifyObject
+ from zope.interface.verify import verifyClass, verifyObject
+
from pyramid.interfaces import IIntrospector
verifyClass(IIntrospector, self._getTargetClass())
@@ -346,8 +346,8 @@ class TestIntrospectable(unittest.TestCase):
return self._makeOne('category', 'discrim', 'title', 'type')
def test_conformance(self):
- from zope.interface.verify import verifyClass
- from zope.interface.verify import verifyObject
+ from zope.interface.verify import verifyClass, verifyObject
+
from pyramid.interfaces import IIntrospectable
verifyClass(IIntrospectable, self._getTargetClass())