summaryrefslogtreecommitdiff
path: root/tests/fixtures_model_package/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtures_model_package/tests.py')
-rw-r--r--tests/fixtures_model_package/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fixtures_model_package/tests.py b/tests/fixtures_model_package/tests.py
index d26a81e3be..56d833b9f9 100644
--- a/tests/fixtures_model_package/tests.py
+++ b/tests/fixtures_model_package/tests.py
@@ -8,7 +8,7 @@ from .models import Article
class SampleTestCase(TestCase):
fixtures = ['fixture1.json', 'fixture2.json']
- def testClassFixtures(self):
+ def test_class_fixtures(self):
"Test cases can load fixture objects into models defined in packages"
self.assertEqual(Article.objects.count(), 3)
self.assertQuerysetEqual(