test_search_count is now working on PostgreSQL.

pull/4061/head
Bertrand Bordage 2017-11-23 15:27:35 +01:00
rodzic 49b28311fc
commit 8d31cd4707
1 zmienionych plików z 0 dodań i 5 usunięć

Wyświetl plik

@ -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