From a70c63f84638bb9903dce8399d4a61642d7dd2e7 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 14 Oct 2016 14:02:18 +0200 Subject: [PATCH] Updated fixtures lists Echo to commit django-haystack/django-haystack@7299adc4c (renamed base test fixture). --- tests/xapian_tests/tests/test_query.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/xapian_tests/tests/test_query.py b/tests/xapian_tests/tests/test_query.py index 0314ab5..83cc180 100644 --- a/tests/xapian_tests/tests/test_query.py +++ b/tests/xapian_tests/tests/test_query.py @@ -21,6 +21,8 @@ class XapianSearchQueryTestCase(HaystackBackendTestCase, TestCase): Tests the XapianSearchQuery, the class that converts SearchQuerySet queries using the `__` notation to XapianQueries. """ + fixtures = ['base_data.json'] + def get_index(self): return MockQueryIndex() @@ -248,7 +250,7 @@ class SearchQueryTestCase(HaystackBackendTestCase, TestCase): Tests expected behavior of SearchQuery. """ - fixtures = ['initial_data.json'] + fixtures = ['base_data.json'] def get_index(self): return MockSearchIndex() @@ -348,7 +350,7 @@ class LiveSearchQuerySetTestCase(HaystackBackendTestCase, TestCase): """ SearchQuerySet specific tests """ - fixtures = ['initial_data.json'] + fixtures = ['base_data.json'] def get_index(self): return MockSearchIndex()