mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-11 16:53:10 +00:00
Recategorise an expectedFailure test
This test won't work even if the index API was implemented for the DB backend
This commit is contained in:
parent
06833b3e09
commit
9d745541c8
1 changed files with 5 additions and 5 deletions
|
|
@ -18,6 +18,11 @@ class TestDBBackend(BackendTests, TestCase):
|
|||
def test_search_boosting_on_related_fields(self):
|
||||
super().test_search_boosting_on_related_fields()
|
||||
|
||||
# Doesn't support ranking
|
||||
@unittest.expectedFailure
|
||||
def test_same_rank_pages(self):
|
||||
super(TestDBBackend, self).test_same_rank_pages()
|
||||
|
||||
# Doesn't support searching specific fields
|
||||
@unittest.expectedFailure
|
||||
def test_search_child_class_field_from_parent(self):
|
||||
|
|
@ -32,8 +37,3 @@ class TestDBBackend(BackendTests, TestCase):
|
|||
@unittest.expectedFailure
|
||||
def test_search_callable_field(self):
|
||||
super().test_search_callable_field()
|
||||
|
||||
# Doesn't support the index API used in this test
|
||||
@unittest.expectedFailure
|
||||
def test_same_rank_pages(self):
|
||||
super().test_same_rank_pages()
|
||||
|
|
|
|||
Loading…
Reference in a new issue