Skip to content

Commit 4b4fe4a

Browse files
committed
Fix tests race conditions
1 parent ec1d1ba commit 4b4fe4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/component_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ func (s *ComponentSuite) TestBasic() {
197197
case <-stopChannel:
198198
msg := "runner is ready"
199199
fmt.Println(msg)
200-
case <-time.After(2 * time.Minute):
200+
case <-time.After(5 * time.Minute):
201201
defer close(stopChannel)
202202
msg := "runner is not ready"
203203
assert.Fail(s.T(), msg)

0 commit comments

Comments
 (0)