diff --git a/integration/v6/experimental/v3_zdt_push_command_test.go b/integration/v6/experimental/v3_zdt_push_command_test.go index 1a330d5bde3..bc0e28ce0e2 100644 --- a/integration/v6/experimental/v3_zdt_push_command_test.go +++ b/integration/v6/experimental/v3_zdt_push_command_test.go @@ -509,27 +509,21 @@ var _ = Describe("v3-zdt-push command", func() { It("uses the specified stack", func() { var session *Session helpers.WithHelloWorldApp(func(appDir string) { - session = helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "v3-zdt-push", appName, "-s", "cflinuxfs2") + session = helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "v3-zdt-push", appName, "-s", "cflinuxfs3") Eventually(session).Should(Exit(0)) }) Eventually(session).Should(Say(`name:\s+%s`, appName)) Eventually(session).Should(Say(`requested state:\s+started`)) Eventually(session).Should(Say(`routes:\s+%s\.%s`, appName, domainName)) - Eventually(session).Should(Say(`stack:\s+cflinuxfs2`)) + Eventually(session).Should(Say(`stack:\s+cflinuxfs3`)) }) }) When("a non-default stack is specified", func() { It("uses the specified stack", func() { - var session *Session - helpers.WithHelloWorldApp(func(appDir string) { - session = helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "v3-zdt-push", appName, "-s", "cflinuxfs2") - Eventually(session).Should(Exit(0)) - }) - Eventually(session).Should(Say(`name:\s+%s`, appName)) - Eventually(session).Should(Say(`requested state:\s+started`)) - Eventually(session).Should(Say(`routes:\s+%s\.%s`, appName, domainName)) - Eventually(session).Should(Say(`stack:\s+cflinuxfs2`)) + + Skip("we have only one stack") + }) }) @@ -539,7 +533,7 @@ var _ = Describe("v3-zdt-push command", func() { It("creates the app with the specified stack and buildpack", func() { var session *Session helpers.WithHelloWorldApp(func(appDir string) { - session = helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "v3-zdt-push", appName, "-b", "https://github.com/cloudfoundry/staticfile-buildpack", "-s", "cflinuxfs2") + session = helpers.CustomCF(helpers.CFEnv{WorkingDirectory: appDir}, "v3-zdt-push", appName, "-b", "https://github.com/cloudfoundry/staticfile-buildpack", "-s", "cflinuxfs3") Eventually(session).Should(Exit(0)) }) // TODO: assert specific error text when it is written