testdata: gofmt testdata/src

This commit is contained in:
Joël Stemmer 2022-05-21 14:19:38 +01:00
parent d2592490b6
commit fb0aeb9fda

View File

@ -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")
}