diff --git a/testdata/src/parallel/pkg_test.go b/testdata/src/parallel/pkg_test.go index 64855a6..2bf599f 100644 --- a/testdata/src/parallel/pkg_test.go +++ b/testdata/src/parallel/pkg_test.go @@ -8,20 +8,20 @@ import ( func TestP1(t *testing.T) { t.Parallel() t.Log("t.Log(P1)") - time.Sleep(100*time.Millisecond) + time.Sleep(100 * time.Millisecond) t.Errorf("P1 error") } func TestP2(t *testing.T) { t.Parallel() t.Log("t.Log(P2)") - time.Sleep(50*time.Millisecond) + time.Sleep(50 * time.Millisecond) t.Errorf("P2 error") } func TestP3(t *testing.T) { t.Parallel() t.Log("t.Log(P3)") - time.Sleep(75*time.Millisecond) + time.Sleep(75 * time.Millisecond) t.Errorf("P3 error") }