test(http_retry): remove t.Parallel from test cases

This commit is contained in:
yumosx 2026-02-26 09:37:56 +08:00
parent 57ad26aee8
commit 6e55119781

View file

@ -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++