diff --git a/integration/v7/isolated/app_command_test.go b/integration/v7/isolated/app_command_test.go index 9ba719f9f3a..15eba969087 100644 --- a/integration/v7/isolated/app_command_test.go +++ b/integration/v7/isolated/app_command_test.go @@ -413,13 +413,13 @@ applications: BeforeEach(func() { helpers.SkipIfVersionLessThan(ccversion.MinVersionCNB) helpers.WithJSHelloWorld(func(appDir string) { - Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://gcr.io/paketo-buildpacks/nodejs:latest")).Should(Exit()) + Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://docker.io/paketobuildpacks/nodejs:latest")).Should(Exit()) }) }) It("displays the app buildpacks", func() { session := helpers.CF("app", appName) - Eventually(session).Should(Say(`paketo-buildpacks\/nodejs`)) + Eventually(session).Should(Say(`paketobuildpacks\/nodejs`)) Eventually(session).Should(Exit(0)) }) })