summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_containers.py2
-rw-r--r--tests/test_using.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_containers.py b/tests/test_containers.py
index b1ed6ed..139e973 100644
--- a/tests/test_containers.py
+++ b/tests/test_containers.py
@@ -342,7 +342,7 @@ class AttributeBuilderTestCase(unittest.TestCase):
ab = containers.AttributeBuilder(FakeFactory, {'one__blah': 1, 'two__bar': 2})
self.assertTrue(ab.has_subfields(sf))
- self.assertEqual(['one'], ab._subfields.keys())
+ self.assertEqual(['one'], list(ab._subfields.keys()))
self.assertEqual(2, ab._attrs['two__bar'])
def test_sub_factory(self):
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)