summaryrefslogtreecommitdiff
path: root/tests/test_base.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:15:45 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:15:45 +0200
commitf2d04144167120dc8820401940172d10fdda007b (patch)
tree19c844b9c510abf22f0bc1c71d3033ada9f319d0 /tests/test_base.py
parent3a5709527d362a960a1a35769375412e4536839e (diff)
downloadfactory-boy-f2d04144167120dc8820401940172d10fdda007b.tar
factory-boy-f2d04144167120dc8820401940172d10fdda007b.tar.gz
Rename hidden/arg_parameters to exclude/inline_args.
Diffstat (limited to 'tests/test_base.py')
-rw-r--r--tests/test_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_base.py b/tests/test_base.py
index d93bf29..d1df58e 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -122,8 +122,8 @@ class OptionsTests(unittest.TestCase):
# Declarative attributes
self.assertTrue(AbstractFactory._meta.abstract)
self.assertIsNone(AbstractFactory._meta.model)
- self.assertEqual((), AbstractFactory._meta.arg_parameters)
- self.assertEqual((), AbstractFactory._meta.hidden_args)
+ self.assertEqual((), AbstractFactory._meta.inline_args)
+ self.assertEqual((), AbstractFactory._meta.exclude)
self.assertEqual(base.CREATE_STRATEGY, AbstractFactory._meta.strategy)
# Non-declarative attributes