mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 20:50:14 -05:00
testdata: gofmt testdata/src
This commit is contained in:
parent
d2592490b6
commit
fb0aeb9fda
6
testdata/src/parallel/pkg_test.go
vendored
6
testdata/src/parallel/pkg_test.go
vendored
@ -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")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user