Skip to content

Commit 1894f8e

Browse files
committed
Fix continue deployment test
1 parent e9c4744 commit 1894f8e

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

integration/v7/isolated/continue_deployment_test.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,13 @@ var _ = Describe("Continue Deployment", func() {
9292
When("instance steps are provided", func() {
9393
It("displays the number of steps", func() {
9494
helpers.WithHelloWorldApp(func(appDir string) {
95-
helpers.CF("push", appName, "-p", appDir, "--strategy=canary", "--instance-steps 10,20,30,70", "-i 5").Wait()
95+
helpers.CF("push", appName, "-p", appDir, "--strategy=canary", "--instance-steps", "10,20,30,70", "-i", "5").Wait()
9696
})
9797

98-
session := helpers.CF("continue-deployment", appName)
98+
session := helpers.CF("app", appName)
9999
Eventually(session).Should(Say("canary-steps: 1/4"))
100+
session = helpers.CF("continue-deployment", appName)
101+
Eventually(session).Should(Say("canary-steps: 2/4"))
100102
Eventually(session).Should(Exit(0))
101103
})
102104
})

0 commit comments

Comments
 (0)