From 6e551197811c5fbe964f68e9ea59299cbe0a3ec3 Mon Sep 17 00:00:00 2001 From: yumosx Date: Thu, 26 Feb 2026 09:37:56 +0800 Subject: [PATCH] test(http_retry): remove t.Parallel from test cases --- pkg/utils/http_retry_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/utils/http_retry_test.go b/pkg/utils/http_retry_test.go index b850d263b..02c89c20e 100644 --- a/pkg/utils/http_retry_test.go +++ b/pkg/utils/http_retry_test.go @@ -56,7 +56,6 @@ func TestDoRequestWithRetry(t *testing.T) { for _, tc := range testcases { t.Run(tc.name, func(t *testing.T) { - t.Parallel() attempts := 0 server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { attempts++