chore: remove backticks and resolve linting issues

Signed-off-by: Alano Terblanche <18033717+Benehiko@users.noreply.github.com>
This commit is contained in:
Alano Terblanche 2024-04-02 15:44:23 +02:00
parent 7c722c08d0
commit 910d5d0247
No known key found for this signature in database
GPG Key ID: 0E8FACD1BA98DE27
12 changed files with 13 additions and 13 deletions

View File

@ -74,7 +74,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return 0, "", err
}
if !r {
return 0, "", errdefs.Cancelled(errors.New("`builder prune` has been cancelled"))
return 0, "", errdefs.Cancelled(errors.New("builder prune has been cancelled"))
}
}

View File

@ -61,7 +61,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return 0, "", err
}
if !r {
return 0, "", errdefs.Cancelled(errors.New("`container prune` has been cancelled"))
return 0, "", errdefs.Cancelled(errors.New("container prune has been cancelled"))
}
}

View File

@ -75,7 +75,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return 0, "", err
}
if !r {
return 0, "", errdefs.Cancelled(errors.New("`image prune` has been cancelled"))
return 0, "", errdefs.Cancelled(errors.New("image prune has been cancelled"))
}
}

View File

@ -57,7 +57,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return "", err
}
if !r {
return "", errdefs.Cancelled(errors.New("`network prune` cancelled has been cancelled"))
return "", errdefs.Cancelled(errors.New("network prune cancelled has been cancelled"))
}
}

View File

@ -69,7 +69,7 @@ func runUpgrade(ctx context.Context, dockerCli command.Cli, opts pluginOptions)
return err
}
if !r {
return errdefs.Cancelled(errors.New("`plugin upgrade` has been cancelled"))
return errdefs.Cancelled(errors.New("plugin upgrade has been cancelled"))
}
}

View File

@ -82,7 +82,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return err
}
if !r {
return errdefs.Cancelled(errors.New("`system prune` has been cancelled"))
return errdefs.Cancelled(errors.New("system prune has been cancelled"))
}
}
pruneFuncs := []func(ctx context.Context, dockerCli command.Cli, all bool, filter opts.FilterOpt) (uint64, string, error){

View File

@ -17,7 +17,7 @@ func TestPrunePromptPre131DoesNotIncludeBuildCache(t *testing.T) {
cli := test.NewFakeCli(&fakeClient{version: "1.30"})
cmd := newPruneCommand(cli)
cmd.SetArgs([]string{})
assert.ErrorContains(t, cmd.Execute(), "`system prune` has been cancelled")
assert.ErrorContains(t, cmd.Execute(), "system prune has been cancelled")
expected := `WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container
@ -35,7 +35,7 @@ func TestPrunePromptFilters(t *testing.T) {
cmd := newPruneCommand(cli)
cmd.SetArgs([]string{"--filter", "until=24h", "--filter", "label=hello-world", "--filter", "label!=foo=bar", "--filter", "label=bar=baz"})
assert.ErrorContains(t, cmd.Execute(), "`system prune` has been cancelled")
assert.ErrorContains(t, cmd.Execute(), "system prune has been cancelled")
expected := `WARNING! This will remove:
- all stopped containers
- all networks not used by at least one container

View File

@ -49,7 +49,7 @@ func revokeTrust(ctx context.Context, dockerCLI command.Cli, remote string, opti
return err
}
if !deleteRemote {
return errdefs.Cancelled(errors.New("`trust revoke` has been cancelled"))
return errdefs.Cancelled(errors.New("trust revoke has been cancelled"))
}
}

View File

@ -57,7 +57,7 @@ func TestTrustRevokeCommandErrors(t *testing.T) {
}
func TestTrustRevokeCommand(t *testing.T) {
revokeCancelledError := "`trust revoke` has been cancelled"
revokeCancelledError := "trust revoke has been cancelled"
testCases := []struct {
doc string

View File

@ -123,7 +123,7 @@ func PromptForConfirmation(ctx context.Context, ins io.Reader, outs io.Writer, m
select {
case <-notifyCtx.Done():
// print a newline on termination
fmt.Fprintln(outs, "")
_, _ = fmt.Fprintln(outs, "")
return false, ErrPromptTerminated
case r := <-result:
return r, nil

View File

@ -82,7 +82,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, options pruneOptions)
return 0, "", err
}
if !r {
return 0, "", errdefs.Cancelled(errors.New("`volume prune` has been cancelled"))
return 0, "", errdefs.Cancelled(errors.New("volume prune has been cancelled"))
}
}

View File

@ -173,7 +173,7 @@ func TestVolumePrunePromptNo(t *testing.T) {
cli.SetIn(streams.NewIn(io.NopCloser(strings.NewReader(input))))
cmd := NewPruneCommand(cli)
cmd.SetArgs([]string{})
assert.ErrorContains(t, cmd.Execute(), "`volume prune` has been cancelled")
assert.ErrorContains(t, cmd.Execute(), "volume prune has been cancelled")
golden.Assert(t, cli.OutBuffer().String(), "volume-prune-no.golden")
}
}