mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-13 05:04:13 -04:00
13 lines
217 B
Go
13 lines
217 B
Go
//golangcitest:args -Etparallel
|
|
package testdata
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSubtests(t *testing.T) { // want "TestSubtests's subtests should call t.Parallel"
|
|
t.Parallel()
|
|
|
|
t.Run("", func(t *testing.T) {
|
|
})
|
|
}
|