summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul McMillan <Paul@McMillan.ws>2010-06-09 22:33:19 +0000
committerPaul McMillan <Paul@McMillan.ws>2010-06-09 22:33:19 +0000
commit75302ff6355ab770a1791b55eaf4a476bcc76d99 (patch)
treebe2737366b4322b940d47467a3a476c7da9b848d
parent7289013cf18905ad2022eb21a51be91b02284a56 (diff)
[soc2010/test-refactor] Renamed choices test fixture to be semantically meaningful.
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/test-refactor@13345 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--tests/modeltests/choices/fixtures/choices_testdata.json (renamed from tests/modeltests/choices/fixtures/initial_data.json)0
-rw-r--r--tests/modeltests/choices/tests.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/choices/fixtures/initial_data.json b/tests/modeltests/choices/fixtures/choices_testdata.json
index e8236ce7c8..e8236ce7c8 100644
--- a/tests/modeltests/choices/fixtures/initial_data.json
+++ b/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')