Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 0abe6b4

Browse files
Fix another e2e
Signed-off-by: Caroline Briaud <[email protected]>
1 parent d20c612 commit 0abe6b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

e2e/pushpull_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ func TestPushPullInstall(t *testing.T) {
180180
// install should fail (registry is stopped)
181181
cmd.Command = dockerCli.Command("app", "run", "unknown")
182182
//nolint: lll
183-
expected := `Unable to find application image "unknown:latest" locally
184-
Unable to find application "unknown": failed to resolve bundle manifest "docker.io/library/unknown:latest": pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed`
183+
expected := `Unable to find App image "unknown:latest" locally
184+
Unable to find App "unknown": failed to resolve bundle manifest "docker.io/library/unknown:latest": pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed`
185185
icmd.RunCmd(cmd).Assert(t, icmd.Expected{
186186
ExitCode: 1,
187187
Err: expected,

internal/cnab/cnab.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func GetBundle(dockerCli command.Cli, bundleStore appstore.BundleStore, name str
9696
}
9797
bndl, err := bundleStore.Read(ref)
9898
if err != nil {
99-
fmt.Fprintf(dockerCli.Err(), "Unable to find application image %q locally\n", reference.FamiliarString(ref))
99+
fmt.Fprintf(dockerCli.Err(), "Unable to find App image %q locally\n", reference.FamiliarString(ref))
100100

101101
fmt.Fprintf(dockerCli.Out(), "Pulling from registry...\n")
102102
if named, ok := ref.(reference.Named); ok {

0 commit comments

Comments
 (0)