Skip to content

Commit

Permalink
[#160186698] Increase timeout to reduce flakiness
Browse files Browse the repository at this point in the history
Note: These tests should probably be removed after this story:
[#160212641]

Signed-off-by: Sebastian Vidrio <[email protected]>
  • Loading branch information
Changdrew authored and vitreuz committed Aug 31, 2018
1 parent 1b9296c commit f16e145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windows/http_healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var _ = WindowsDescribe("Http Healthcheck", func() {

start := cf.Cf("start", appName)
defer start.Kill()
Eventually(logs.Out, Config.CfPushTimeoutDuration()).Should(Say("health check never passed."))
Eventually(logs.Out, Config.CfPushTimeoutDuration()*2).Should(Say("health check never passed."))
})

It("starts with a valid http healthcheck endpoint", func() {
Expand All @@ -71,7 +71,7 @@ var _ = WindowsDescribe("Http Healthcheck", func() {

start := cf.Cf("start", appName)
defer start.Kill()
Eventually(logs.Out, Config.CfPushTimeoutDuration()).Should(Say("health check never passed."))
Eventually(logs.Out, Config.CfPushTimeoutDuration()*2).Should(Say("health check never passed."))
})
})
})

0 comments on commit f16e145

Please sign in to comment.