mirror of
https://github.com/spf13/viper
synced 2024-11-08 22:27:01 +00:00
Fix gofmt
This commit is contained in:
parent
78a0e37a24
commit
e316012b4d
2 changed files with 5 additions and 6 deletions
|
@ -11,7 +11,6 @@ linters:
|
||||||
- maligned
|
- maligned
|
||||||
|
|
||||||
# TODO: fix me
|
# TODO: fix me
|
||||||
- gofmt
|
|
||||||
- goimports
|
- goimports
|
||||||
- whitespace
|
- whitespace
|
||||||
- deadcode
|
- deadcode
|
||||||
|
|
|
@ -1049,18 +1049,18 @@ func TestFindsNestedKeys(t *testing.T) {
|
||||||
"owner.dob": dob,
|
"owner.dob": dob,
|
||||||
"beard": true,
|
"beard": true,
|
||||||
"foos": []map[string]interface{}{
|
"foos": []map[string]interface{}{
|
||||||
map[string]interface{}{
|
{
|
||||||
"foo": []map[string]interface{}{
|
"foo": []map[string]interface{}{
|
||||||
map[string]interface{}{
|
{
|
||||||
"key": 1,
|
"key": 1,
|
||||||
},
|
},
|
||||||
map[string]interface{}{
|
{
|
||||||
"key": 2,
|
"key": 2,
|
||||||
},
|
},
|
||||||
map[string]interface{}{
|
{
|
||||||
"key": 3,
|
"key": 3,
|
||||||
},
|
},
|
||||||
map[string]interface{}{
|
{
|
||||||
"key": 4,
|
"key": 4,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue