From 298ac3ce90496a9a1b510c39ec64d5f90da6cd43 Mon Sep 17 00:00:00 2001 From: Pavel Busko Date: Wed, 21 Aug 2024 15:06:55 +0200 Subject: [PATCH] Fix test Co-authored-by: Johannes Dillmann --- integration/v7/isolated/create_app_command_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/v7/isolated/create_app_command_test.go b/integration/v7/isolated/create_app_command_test.go index 1c582b1f35..680891fe5a 100644 --- a/integration/v7/isolated/create_app_command_test.go +++ b/integration/v7/isolated/create_app_command_test.go @@ -59,7 +59,7 @@ var _ = Describe("create-app command", func() { It("tells the user that the app type is incorrect, prints help text, and exits 1", func() { session := helpers.CF("create-app", appName, "--app-type", "unknown-app-type") - Eventually(session.Err).Should(Say("Incorrect Usage: Invalid value `unknown-app-type' for option `--app-type'. Allowed values are: buildpack or docker")) + Eventually(session.Err).Should(Say("Incorrect Usage: Invalid value `unknown-app-type' for option `--app-type'. Allowed values are: buildpack, docker or cnb")) Eventually(session).Should(Say("NAME:")) Eventually(session).Should(Exit(1)) })