fix(indexer): correct bleve indexer token filters (#38853)

* fix #36228
* fix #37221

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Mitrahsoft
2026-08-17 13:29:41 +05:30
committed by GitHub
parent 3cd6672e48
commit 1b21c8a1e6
9 changed files with 246 additions and 17 deletions
+2 -2
View File
@@ -53,9 +53,9 @@ func TestSearchRepo(t *testing.T) {
}
func testSearch(t *testing.T, url string, expected []string) {
t.Helper()
req := NewRequest(t, "GET", url)
resp := MakeRequest(t, req, http.StatusOK)
filenames := resultFilenames(NewHTMLParser(t, resp.Body))
assert.Equal(t, expected, filenames)
assert.Equal(t, expected, filenames, "url=%s", url)
}