mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-13 14:58:45 -04:00
14 lines
217 B
Go
14 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) {
|
||
|
})
|
||
|
}
|