Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/world/components.go
Original file line number Diff line number Diff line change
@@ -85,6 +85,6 @@ func (c *Components) Zookeeper(id int, network *docker.Network) *runner.Zookeepe

func execute(r ifrit.Runner) {
p := ifrit.Invoke(r)
Eventually(p.Ready(), 2*time.Second).Should(BeClosed())
Eventually(p.Wait(), 45*time.Second).Should(Receive(BeNil()))
EventuallyWithOffset(1, p.Ready(), 2*time.Second).Should(BeClosed())
EventuallyWithOffset(1, p.Wait(), 45*time.Second).Should(Receive(BeNil()))
}

0 comments on commit 71983e8

Please sign in to comment.