diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-07-09 20:27:32 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-07-09 20:27:32 +0200 |
commit | 4a683034ae2d53adf9d2faa94051393646d65725 (patch) | |
tree | ad40efa6f56086bd8ce650f824f4e0f70b9a3f29 | |
parent | c3069876b43cc30b24df44ef1b5ada1a1dc0358b (diff) | |
download | factory-boy-4a683034ae2d53adf9d2faa94051393646d65725.tar factory-boy-4a683034ae2d53adf9d2faa94051393646d65725.tar.gz |
Fix TestCase name conflict
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r-- | tests/test_using.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_using.py b/tests/test_using.py index b5687b5..f4d5440 100644 --- a/tests/test_using.py +++ b/tests/test_using.py @@ -862,7 +862,7 @@ class IteratorTestCase(unittest.TestCase): self.assertEqual(i % 5, obj.one) -class PostGenerationDeclarationTestCase(unittest.TestCase): +class PostGenerationTestCase(unittest.TestCase): def test_post_generation(self): class TestObjectFactory(factory.Factory): one = 1 |