From b2064cab2ba5bfa890131a5b9014b8cb05ef301e Mon Sep 17 00:00:00 2001 From: Molecule AI Core-BE Date: Tue, 12 May 2026 11:11:00 +0000 Subject: [PATCH] fix(handlers): remove unused os and mdb imports in integration test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both packages were imported but not referenced in the file. Go build tag "integration" still compiles them — caught by CI. Co-Authored-By: Claude Opus 4.7 --- .../internal/handlers/delegation_executor_integration_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/workspace-server/internal/handlers/delegation_executor_integration_test.go b/workspace-server/internal/handlers/delegation_executor_integration_test.go index 08da027b..f7d62c0d 100644 --- a/workspace-server/internal/handlers/delegation_executor_integration_test.go +++ b/workspace-server/internal/handlers/delegation_executor_integration_test.go @@ -32,12 +32,10 @@ import ( "fmt" "net" "net/http" - "os" "sync" "testing" "time" - mdb "github.com/Molecule-AI/molecule-monorepo/platform/internal/db" "github.com/alicebob/miniredis/v2" )