From 4e3bf2752d13583596ec70afa1034b7ad41c4825 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Fri, 13 Mar 2026 13:12:04 +0100 Subject: [PATCH] fix(tests): Remove 'huggingface' substring expectation Remove check for 'huggingface' in response body. Signed-off-by: Ettore Di Giacinto --- core/http/app_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/http/app_test.go b/core/http/app_test.go index 6202573b5..a2742aa8e 100644 --- a/core/http/app_test.go +++ b/core/http/app_test.go @@ -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")) })