From 1b640f5e7082eacccb883b9e463a9b54b1ce19ed Mon Sep 17 00:00:00 2001 From: Aditya Mahendrakar Date: Wed, 3 Jan 2024 07:09:08 -0800 Subject: [PATCH] temporarily stop doing t.Parallel for tests with panic (#350) --- api/log_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/api/log_test.go b/api/log_test.go index a1a7abbe..3bd2542e 100644 --- a/api/log_test.go +++ b/api/log_test.go @@ -65,8 +65,6 @@ func TestLogWithCheckingPanic(t *testing.T) { // https://github.com/golang/go/wiki/CommonMistakes#using-goroutines-on-loop-iterator-variables tc := tc t.Run(tc.name, func(t *testing.T) { - t.Parallel() - got := "" f := func(statusCode int, err error) { got = fmt.Sprintf(logStr, statusCode, err)