Set an AutocompleteField on FullFeaturedSnippet so TestFilterSetClassSearch works correctly

pull/10693/head
Matt Westcott 2023-07-18 14:19:09 +01:00 zatwierdzone przez Sage Abdullah
rodzic f66cb7cbb5
commit 112fa6b72d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
3 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -4,7 +4,7 @@ Changelog
5.2 (xx.xx.xxxx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~
* ...
* Maintenance: Fix snippet search test to work on non-fallback database backends (Matt Westcott)
5.1 (xx.xx.xxxx) - IN DEVELOPMENT

Wyświetl plik

@ -26,7 +26,7 @@ depth: 1
### Maintenance
* ...
* Fix snippet search test to work on non-fallback database backends (Matt Westcott)
## Upgrade considerations

Wyświetl plik

@ -1121,6 +1121,7 @@ class FullFeaturedSnippet(
search_fields = [
index.SearchField("text"),
index.AutocompleteField("text"),
index.FilterField("text"),
index.FilterField("country_code"),
]