We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191cfc3 commit 157bbbbCopy full SHA for 157bbbb
commands/commands_test.go
@@ -67,7 +67,9 @@ func (grabber *stdOutRedirect) Close() {
67
68
// executeWithArgs executes the Cobra Command with the given arguments
69
// and intercepts any errors (even `os.Exit()` ones), returning the exit code
70
-func executeWithArgs(t *testing.T, args ...string) (exitCode int, output []byte) {
+func executeWithArgs(t *testing.T, args ...string) (int, []byte) {
71
+ var output []byte
72
+ var exitCode int
73
fmt.Printf("RUNNING: %s\n", args)
74
75
redirect := &stdOutRedirect{}
0 commit comments