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 20593f4..e5af8fb 100644
--- a/tests/test_using.py
+++ b/tests/test_using.py
@@ -63,7 +63,7 @@ class FakeModel(object):
class FakeModelFactory(factory.Factory):
- FACTORY_ABSTRACT = True
+ ABSTRACT_FACTORY = True
@classmethod
def _create(cls, target_class, *args, **kwargs):
@@ -253,7 +253,7 @@ class UsingFactoryTestCase(unittest.TestCase):
def test_abstract(self):
class SomeAbstractFactory(factory.Factory):
- FACTORY_ABSTRACT = True
+ ABSTRACT_FACTORY = True
one = 'one'
class InheritedFactory(SomeAbstractFactory):