2023-07-31 03:22:40 -03:00
|
|
|
package test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mgechev/revive/rule"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRedundantImportAlias(t *testing.T) {
|
2024-11-11 13:39:10 +02:00
|
|
|
testRule(t, "redundant_import_alias", &rule.RedundantImportAlias{})
|
2023-07-31 03:22:40 -03:00
|
|
|
}
|