16 lines
233 B
Go
16 lines
233 B
Go
package test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golangci/golangci-lint/test/testshared/integration"
|
|
)
|
|
|
|
func TestFix(t *testing.T) {
|
|
integration.RunFix(t)
|
|
}
|
|
|
|
func TestFix_pathPrefix(t *testing.T) {
|
|
integration.RunFixPathPrefix(t)
|
|
}
|