diff options
| -rw-r--r-- | lib/play/play_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/play/play_test.go b/lib/play/play_test.go index 59c6eaba..bf1f36b1 100644 --- a/lib/play/play_test.go +++ b/lib/play/play_test.go @@ -134,7 +134,6 @@ func TestGo_Run_Overlap(t *testing.T) { runwg.Add(1) go testRunOverlap(t, &runwg, tdata, `run2`, sid) - runwg.Wait() // The cmd1 Run should have been killed. @@ -164,7 +163,8 @@ func testRunOverlap(t *testing.T, runwg *sync.WaitGroup, tdata *test.Data, Root: t.TempDir(), }) if err != nil { - t.Fatal(err) + t.Error(err) + return } var req = &Request{ |
