Skip to content

Commit 0fea100

Browse files
committed
test(internal/orchestrion): fix civisibility parallel subtest lint
1 parent 3673a9d commit 0fea100

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/orchestrion/_integration/civisibility/testing_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ func TestWithParallelSubTests(t *testing.T) {
2424
t.Parallel()
2525

2626
for _, name := range []string{"Sub1", "Sub2", "Sub3"} {
27-
name := name
28-
t.Run(name, func(t *testing.T) {
27+
localName := name
28+
t.Run(localName, func(t *testing.T) {
2929
t.Parallel()
30-
t.Logf("Parallel sub test %s", name)
30+
t.Logf("Parallel sub test %s", localName)
3131
})
3232
}
3333
}

0 commit comments

Comments
 (0)