mirror of
https://github.com/mgechev/revive.git
synced 2025-05-19 22:03:20 +02:00
11 lines
188 B
Go
11 lines
188 B
Go
package test
|
|
|
|
import (
|
|
"github.com/mgechev/revive/rule"
|
|
"testing"
|
|
)
|
|
|
|
func TestRedundantImportAlias(t *testing.T) {
|
|
testRule(t, "redundant_import_alias", &rule.RedundantImportAlias{})
|
|
}
|