summaryrefslogtreecommitdiff
path: root/tests/test_declarations.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_declarations.py')
-rw-r--r--tests/test_declarations.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_declarations.py b/tests/test_declarations.py
index 7b9b0af..4c08dfa 100644
--- a/tests/test_declarations.py
+++ b/tests/test_declarations.py
@@ -25,6 +25,7 @@ import itertools
import warnings
from factory import declarations
+from factory import helpers
from .compat import mock, unittest
from . import tools
@@ -124,7 +125,7 @@ class PostGenerationDeclarationTestCase(unittest.TestCase):
def test_decorator_simple(self):
call_params = []
- @declarations.post_generation
+ @helpers.post_generation
def foo(*args, **kwargs):
call_params.append(args)
call_params.append(kwargs)