Skip to content

Commit

Permalink
Fix assertion about cf continue-deployment help text
Browse files Browse the repository at this point in the history
  • Loading branch information
chinigo committed Aug 20, 2024
1 parent d9bea84 commit 8c8b426
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion integration/v7/isolated/continue_deployment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ var _ = Describe("Continue Deployment", func() {
Eventually(session).Should(Say(`\n`))

Eventually(session).Should(Say(`USAGE:`))
Eventually(session).Should(Say(`cf continue-deployment APP_NAME\n`))
Eventually(session).Should(Say(`cf continue-deployment APP_NAME \[--no-wait\]\n`))
Eventually(session).Should(Say(`\n`))

Eventually(session).Should(Say(`EXAMPLES:`))
Eventually(session).Should(Say(`cf continue-deployment my-app\n`))
Eventually(session).Should(Say(`\n`))

Eventually(session).Should(Say(`OPTIONS:`))
Eventually(session).Should(Say(`--no-wait\s+Exit when the first instance of the web process is healthy`))
Eventually(session).Should(Say(`\n`))

Eventually(session).Should(Say(`SEE ALSO:`))
Eventually(session).Should(Say(`app, push`))

Expand Down

0 comments on commit 8c8b426

Please sign in to comment.