Skip to content

Commit 3737b3d

Browse files
authored
Use docker hub for buildpack download (#3508)
1 parent 348315b commit 3737b3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/v7/isolated/app_command_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,13 +411,13 @@ applications:
411411
When("the app is a CNB app", func() {
412412
BeforeEach(func() {
413413
helpers.WithJSHelloWorld(func(appDir string) {
414-
Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://gcr.io/paketo-buildpacks/nodejs:latest")).Should(Exit())
414+
Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://docker.io/paketobuildpacks/nodejs:latest")).Should(Exit())
415415
})
416416
})
417417

418418
It("displays the app buildpacks", func() {
419419
session := helpers.CF("app", appName)
420-
Eventually(session).Should(Say(`paketo-buildpacks\/nodejs`))
420+
Eventually(session).Should(Say(`paketobuildpacks\/nodejs`))
421421
Eventually(session).Should(Exit(0))
422422
})
423423
})

0 commit comments

Comments
 (0)