mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-03-16 22:20:31 +00:00
Updated fixtures lists
Echo to commit django-haystack/django-haystack@7299adc4c (renamed base test fixture).
This commit is contained in:
parent
8a6371a4ae
commit
a70c63f846
1 changed files with 4 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue