From 3ce52481263767fd26a482df6d655d399964d8fa Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 23 Apr 2026 14:58:57 +0200 Subject: [PATCH] Update expected length of instructions in test Signed-off-by: Ettore Di Giacinto --- core/http/endpoints/localai/api_instructions_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/http/endpoints/localai/api_instructions_test.go b/core/http/endpoints/localai/api_instructions_test.go index cf5e776ec..5ef32846a 100644 --- a/core/http/endpoints/localai/api_instructions_test.go +++ b/core/http/endpoints/localai/api_instructions_test.go @@ -39,7 +39,7 @@ var _ = Describe("API Instructions Endpoints", func() { instructions, ok := resp["instructions"].([]any) Expect(ok).To(BeTrue()) - Expect(instructions).To(HaveLen(10)) + Expect(instructions).To(HaveLen(11)) // Verify each instruction has required fields and correct URL format for _, s := range instructions {