style: Apply go fmt
This commit is contained in:
parent
0b992c6156
commit
45aee8257f
3 changed files with 3 additions and 4 deletions
|
@ -11,7 +11,6 @@ func Merge(in1 *map[string]interface{}, in2 *map[string]interface{}) *map[string
|
||||||
return in1
|
return in1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
new := make(map[string]interface{})
|
new := make(map[string]interface{})
|
||||||
for k, v := range *in1 {
|
for k, v := range *in1 {
|
||||||
new[k] = v
|
new[k] = v
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package util
|
package util
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMergeWithEmptyMap(t *testing.T) {
|
func TestMergeWithEmptyMap(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue