Skip to content

Commit a0ca91b

Browse files
authored
Use docker hub for buildpack download (#3507)
1 parent 6bdfced commit a0ca91b

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
@@ -413,13 +413,13 @@ applications:
413413
BeforeEach(func() {
414414
helpers.SkipIfVersionLessThan(ccversion.MinVersionCNB)
415415
helpers.WithJSHelloWorld(func(appDir string) {
416-
Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://gcr.io/paketo-buildpacks/nodejs:latest")).Should(Exit())
416+
Eventually(helpers.CF("push", appName, "-p", appDir, "--lifecycle", "cnb", "-b", "docker://docker.io/paketobuildpacks/nodejs:latest")).Should(Exit())
417417
})
418418
})
419419

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

0 commit comments

Comments
 (0)