summaryrefslogtreecommitdiff
path: root/tests/test_using.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_using.py')
-rw-r--r--tests/test_using.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_using.py b/tests/test_using.py
index 112604d..ad62113 100644
--- a/tests/test_using.py
+++ b/tests/test_using.py
@@ -1220,13 +1220,13 @@ class CircularTestCase(unittest.TestCase):
def test_example(self):
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
- from cyclic import foo
+ from .cyclic import foo
f = foo.FooFactory.build(bar__foo=None)
self.assertEqual(42, f.x)
self.assertEqual(13, f.bar.y)
self.assertIsNone(f.bar.foo)
- from cyclic import bar
+ from .cyclic import bar
b = bar.BarFactory.build(foo__bar__foo__bar=None)
self.assertEqual(13, b.y)
self.assertEqual(42, b.foo.x)