Michael Merickel
2018-10-15 10ddb6f08592c2740b966e98a6f98a5b83af1896
tests/test_location.py
@@ -1,4 +1,6 @@
import unittest
from zope.interface import implementer
from pyramid.interfaces import ILocation
class TestInside(unittest.TestCase):
@@ -42,10 +44,6 @@
        self.assertEqual(result, [o3, o2, o1])
        result = list(self._callFUT(o1))
        self.assertEqual(result, [o1])
from pyramid.interfaces import ILocation
from zope.interface import implementer
@implementer(ILocation)