File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import (
11
11
12
12
func TestCliarg (t * testing.T ) {
13
13
t .Run ("No errors" , func (t * testing.T ) {
14
+ t .Parallel ()
14
15
namedArg := "workspace"
15
16
customErrorMessage := "Please call with a workspace arg"
16
17
fun := cliarg .ExactNamedArg (namedArg , customErrorMessage )
@@ -21,6 +22,7 @@ func TestCliarg(t *testing.T) {
21
22
require .Nil (t , want , got )
22
23
})
23
24
t .Run ("Custom error message" , func (t * testing.T ) {
25
+ t .Parallel ()
24
26
namedArg := "workspace"
25
27
customErrorMessage := "Please call with a workspace arg"
26
28
fun := cliarg .ExactNamedArg (namedArg , customErrorMessage )
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import (
10
10
)
11
11
12
12
func TestDelete (t * testing.T ) {
13
- t .Parallel ()
14
13
t .Run ("WithoutParameters" , func (t * testing.T ) {
15
14
t .Parallel ()
16
15
You can’t perform that action at this time.
0 commit comments