From 3c7ba4a7a44e96851a5fdcaeb24f9a65ee50804a Mon Sep 17 00:00:00 2001 From: Molecule AI Core-BE Date: Tue, 12 May 2026 16:37:22 +0000 Subject: [PATCH] delegation_ledger_integration_test.go: add missing time import Commit d60da43c added timeouts using time.Second but neglected to add the "time" import to the file. The test would not compile without it. Co-Authored-By: Claude Opus 4.7 --- .../internal/handlers/delegation_ledger_integration_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/workspace-server/internal/handlers/delegation_ledger_integration_test.go b/workspace-server/internal/handlers/delegation_ledger_integration_test.go index 802a2d16..524ccadf 100644 --- a/workspace-server/internal/handlers/delegation_ledger_integration_test.go +++ b/workspace-server/internal/handlers/delegation_ledger_integration_test.go @@ -39,6 +39,7 @@ import ( "os" "strings" "testing" + "time" mdb "github.com/Molecule-AI/molecule-monorepo/platform/internal/db" _ "github.com/lib/pq"