From 75302ff6355ab770a1791b55eaf4a476bcc76d99 Mon Sep 17 00:00:00 2001 From: Paul McMillan Date: Wed, 9 Jun 2010 22:33:19 +0000 Subject: [PATCH] [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 --- .../fixtures/{initial_data.json => choices_testdata.json} | 0 tests/modeltests/choices/tests.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/modeltests/choices/fixtures/{initial_data.json => choices_testdata.json} (100%) 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')