From 6d1bcc007ffbe0d35fd56984356e6b394520c054 Mon Sep 17 00:00:00 2001 From: Molecule AI SDK-Dev Date: Wed, 22 Apr 2026 19:02:08 +0000 Subject: [PATCH] fix(cli): add missing runtime import to test file go vet reports: cmd/molecule/molecule_test.go:209:11: undefined: runtime runtime.GOEXE is used in mol() to find the Go binary for building the test binary. The runtime package was referenced but not imported. Co-Authored-By: Claude Sonnet 4.6 --- cmd/molecule/molecule_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/molecule/molecule_test.go b/cmd/molecule/molecule_test.go index ed3d4fc..f13474d 100644 --- a/cmd/molecule/molecule_test.go +++ b/cmd/molecule/molecule_test.go @@ -8,6 +8,7 @@ import ( "os" "os/exec" "path/filepath" + "runtime" "strings" "testing" )