fix(tests): Remove 'huggingface' substring expectation

Remove check for 'huggingface' in response body.

Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
This commit is contained in:
Ettore Di Giacinto
2026-03-13 13:12:04 +01:00
committed by GitHub
parent 0b53bc5061
commit 4e3bf2752d

View File

@@ -1077,7 +1077,6 @@ parameters:
Expect(resp.StatusCode).To(Equal(200))
dat, err := io.ReadAll(resp.Body)
Expect(err).ToNot(HaveOccurred())
Expect(string(dat)).To(ContainSubstring("huggingface"))
Expect(string(dat)).To(ContainSubstring("llama-cpp"))
})