Fix: avoid shadow of builtin
This commit is contained in:
@@ -20,6 +20,6 @@ import (
|
||||
|
||||
// NewFakeConfig return a fake Configer
|
||||
func NewFakeConfig() Configer {
|
||||
new := config.NewFakeConfig()
|
||||
return &newToOldConfigerAdapter{delegate: new}
|
||||
config := config.NewFakeConfig()
|
||||
return &newToOldConfigerAdapter{delegate: config}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user