File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -236,9 +236,12 @@ func TestRefSelections(t *testing.T) {
236
236
},
237
237
},
238
238
} {
239
+ i , p := i , p
239
240
t .Run (
240
241
p .name ,
241
242
func (t * testing.T ) {
243
+ t .Parallel ()
244
+
242
245
repo := repo .Clone (t , "ref-selection" )
243
246
defer repo .Remove (t )
244
247
@@ -254,7 +257,7 @@ func TestRefSelections(t *testing.T) {
254
257
cmd .Stdout = & stdout
255
258
var stderr bytes.Buffer
256
259
cmd .Stderr = & stderr
257
- err = cmd .Run ()
260
+ err : = cmd .Run ()
258
261
assert .NoError (t , err )
259
262
260
263
expectedStderr , expectedUniqueCommitCount := computeExpectations (i )
@@ -484,9 +487,12 @@ References (included references marked with '+'):
484
487
` [1 :],
485
488
},
486
489
} {
490
+ p := p
487
491
t .Run (
488
492
p .name ,
489
493
func (t * testing.T ) {
494
+ t .Parallel ()
495
+
490
496
repo := repo .Clone (t , "refgroups" )
491
497
defer repo .Remove (t )
492
498
You can’t perform that action at this time.
0 commit comments