Skip to content

Commit

Permalink
Remove duplicate kubectl in a log message
Browse files Browse the repository at this point in the history
Signed-off-by: mprahl <mprahl@users.noreply.github.com>
  • Loading branch information
mprahl committed May 17, 2024
1 parent 0f2cacc commit 2c99486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func Kubectl(args ...string) {
output, err := cmd.CombinedOutput()
if err != nil {
// in case of failure, print command output (including error)
Fail(fmt.Sprintf("Error running 'kubectl %s'\n: %s: %v", strings.Join(cmd.Args, " "), output, err), 1)
Fail(fmt.Sprintf("Error running '%s'\n: %s: %v", strings.Join(cmd.Args, " "), output, err), 1)
}
}

Expand Down

0 comments on commit 2c99486

Please sign in to comment.