diff --git a/wagtail/contrib/postgres_search/tests/test_backend.py b/wagtail/contrib/postgres_search/tests/test_backend.py index 6b490e31f..f9322ef9f 100644 --- a/wagtail/contrib/postgres_search/tests/test_backend.py +++ b/wagtail/contrib/postgres_search/tests/test_backend.py @@ -41,11 +41,6 @@ class TestPostgresSearchBackend(BackendTests, TestCase): self.assertListEqual(determine_boosts_weights([-2, -1, 0, 1, 2, 3, 4]), [(4, 'A'), (2, 'B'), (0, 'C'), (-2, 'D')]) - # Broken - @unittest.expectedFailure - def test_search_count(self): - super(TestPostgresSearchBackend, self).test_search_count() - # Broken # Note: This is applying the filter, but should be raising the FieldError instead @unittest.expectedFailure