summaryrefslogtreecommitdiff
path: root/tests/modeltests/aggregation/tests.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2011-11-27 10:31:26 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2011-11-27 10:31:26 +0000
commit02bc523b89ae6fb37c26ce8d6424cb84751ad3ac (patch)
tree1b31ae2132f0061e053a557cc46b68e8439dc756 /tests/modeltests/aggregation/tests.py
parente4919f64b09a1813d5f1b4854f8b7c6e3a3c7a9a (diff)
Renamed the fixtures used by the aggregation tests so they're only loaded by the tests that use them. Refs #17275.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17153 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/aggregation/tests.py')
-rw-r--r--tests/modeltests/aggregation/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/aggregation/tests.py b/tests/modeltests/aggregation/tests.py
index 6c1c608d80..a35dbb345f 100644
--- a/tests/modeltests/aggregation/tests.py
+++ b/tests/modeltests/aggregation/tests.py
@@ -10,7 +10,7 @@ from .models import Author, Publisher, Book, Store
class BaseAggregateTestCase(TestCase):
- fixtures = ["initial_data.json"]
+ fixtures = ["aggregation.json"]
def test_empty_aggregate(self):
self.assertEqual(Author.objects.all().aggregate(), {})