diff --git a/tests/modeltests/choices/fixtures/initial_data.json b/tests/modeltests/choices/fixtures/choices_testdata.json similarity index 100% rename from tests/modeltests/choices/fixtures/initial_data.json rename to tests/modeltests/choices/fixtures/choices_testdata.json diff --git a/tests/modeltests/choices/tests.py b/tests/modeltests/choices/tests.py index ed593a9108..ac130e5754 100644 --- a/tests/modeltests/choices/tests.py +++ b/tests/modeltests/choices/tests.py @@ -3,7 +3,7 @@ from django.test import TestCase from models import Person class ChoicesFieldTestCase(TestCase): - fixtures = ['initial_data.json'] + fixtures = ['choices_testdata.json'] def setUp(self): self.a = Person.objects.get(name='Adrian')