From bec52b87a500401ea064df7a077a3315badf233b Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Mon, 25 May 2026 21:21:38 +0200 Subject: [PATCH] =?UTF-8?q?fix(test):=20drop=20testing.Short()=20=E2=80=94?= =?UTF-8?q?=20env=20var=20alone=20gates=20the=20live=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit testing.Short() would silently suppress the test even with RADIOBROWSER_INTEGRATION=1 set, contradicting the skip message. The env var opt-in is sufficient on its own. Co-Authored-By: Claude Sonnet 4.6 --- pkg/service/bmx/radiobrowser_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/service/bmx/radiobrowser_test.go b/pkg/service/bmx/radiobrowser_test.go index 9212fe8..1b2b3e0 100644 --- a/pkg/service/bmx/radiobrowser_test.go +++ b/pkg/service/bmx/radiobrowser_test.go @@ -45,7 +45,7 @@ func TestRadioBrowserSearch(t *testing.T) { } func TestRadioBrowserSearch_Real(t *testing.T) { - if testing.Short() || os.Getenv("RADIOBROWSER_INTEGRATION") == "" { + if os.Getenv("RADIOBROWSER_INTEGRATION") == "" { t.Skip("skipping live network test; set RADIOBROWSER_INTEGRATION=1 to run") } query := "Deutschlandfunk Kultur"