Skip to content

Commit d09bb5e

Browse files
committed
fixup
1 parent 169831f commit d09bb5e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cli/cliarg/cliflag_test.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111

1212
func TestCliarg(t *testing.T) {
1313
t.Run("No errors", func(t *testing.T) {
14+
t.Parallel()
1415
namedArg := "workspace"
1516
customErrorMessage := "Please call with a workspace arg"
1617
fun := cliarg.ExactNamedArg(namedArg, customErrorMessage)
@@ -21,6 +22,7 @@ func TestCliarg(t *testing.T) {
2122
require.Nil(t, want, got)
2223
})
2324
t.Run("Custom error message", func(t *testing.T) {
25+
t.Parallel()
2426
namedArg := "workspace"
2527
customErrorMessage := "Please call with a workspace arg"
2628
fun := cliarg.ExactNamedArg(namedArg, customErrorMessage)

cli/delete_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import (
1010
)
1111

1212
func TestDelete(t *testing.T) {
13-
t.Parallel()
1413
t.Run("WithoutParameters", func(t *testing.T) {
1514
t.Parallel()
1615

0 commit comments

Comments
 (0)