1
0
mirror of https://github.com/django/django.git synced 2025-07-05 18:29:11 +00:00

[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
This commit is contained in:
Paul McMillan 2010-06-09 22:33:19 +00:00
parent 7289013cf1
commit 75302ff635
2 changed files with 1 additions and 1 deletions

View File

@ -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')