From 6d2f174ae8e85882bb887b823534eccce37b2cf6 Mon Sep 17 00:00:00 2001 From: Muyue Date: Mon, 27 Apr 2026 11:16:36 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20rename=20browser=5Ftest.go=20?= =?UTF-8?q?=E2=86=92=20browsertest.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The suffix _test.go makes Go treat the file as a test file (only compiled during 'go test'), so server.go could not see the exported BrowserTestStore / NewBrowserTestStore / RegisterBrowserTestTool and the four handler methods at build time. Rename to a non-test name keeps the same package-level visibility but compiles into the regular api package. --- internal/api/{browser_test.go => browsertest.go} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename internal/api/{browser_test.go => browsertest.go} (100%) diff --git a/internal/api/browser_test.go b/internal/api/browsertest.go similarity index 100% rename from internal/api/browser_test.go rename to internal/api/browsertest.go