1
0
mirror of https://github.com/mgechev/revive.git synced 2025-10-08 22:41:54 +02:00
Files
revive/test/redundant_import_alias_test.go
2025-07-12 07:32:39 -07:00

12 lines
189 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestRedundantImportAlias(t *testing.T) {
testRule(t, "redundant_import_alias", &rule.RedundantImportAlias{})
}