aboutsummaryrefslogtreecommitdiffhomepage
path: root/command/parse_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'command/parse_test.go')
-rw-r--r--command/parse_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/command/parse_test.go b/command/parse_test.go
index ce013f20..c2956c6f 100644
--- a/command/parse_test.go
+++ b/command/parse_test.go
@@ -14,6 +14,8 @@ import (
)
func TestParse(t *testing.T) {
+ t.Parallel()
+
testCases := []struct {
name string
buildTree func(wout, wlog io.Writer) command.Command
@@ -251,6 +253,7 @@ Commands:
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
+ t.Parallel()
wout, wlog := new(bytes.Buffer), new(bytes.Buffer)
c := tc.buildTree(wout, wlog)