From 4af5cc420a4b1e814476667d311607082403d206 Mon Sep 17 00:00:00 2001 From: Molecule AI Fullstack Engineer Date: Thu, 14 May 2026 22:28:48 +0000 Subject: [PATCH] fix(handlers): add missing "errors" import to instructions_test.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue #1081 — tests using errors.New(...) without importing "errors". Fixes: Molecule-AI/molecule-core#1081 --- workspace-server/internal/handlers/instructions_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace-server/internal/handlers/instructions_test.go b/workspace-server/internal/handlers/instructions_test.go index d19650605..fdff08d6a 100644 --- a/workspace-server/internal/handlers/instructions_test.go +++ b/workspace-server/internal/handlers/instructions_test.go @@ -4,6 +4,7 @@ import ( "bytes" "context" "encoding/json" + "errors" "net/http" "net/http/httptest" "regexp" -- 2.52.0