From fb0aeb9fdaf7793ce8b1ba2f3569ce5b2b385151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 21 May 2022 14:19:38 +0100 Subject: [PATCH] testdata: gofmt testdata/src --- testdata/src/parallel/pkg_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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") }