mirror of
https://github.com/eosswedenorg/antelope-api-healthcheck
synced 2026-06-20 09:56:49 +02:00
src/api/log_params.go: Don't need a ToSlice() function as LogParams is already a slice.
This commit is contained in:
parent
3ab2db7cb3
commit
8d2c1c8fa3
2 changed files with 1 additions and 5 deletions
|
|
@ -6,7 +6,3 @@ type LogParams []interface{}
|
||||||
func (p *LogParams) Add(field string, value interface{}) {
|
func (p *LogParams) Add(field string, value interface{}) {
|
||||||
*p = append(*p, field, value)
|
*p = append(*p, field, value)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p LogParams) ToSlice() []interface{} {
|
|
||||||
return []interface{}(p)
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -30,5 +30,5 @@ func TestLogParams(t *testing.T) {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
assert.ElementsMatch(t, expected, p.ToSlice())
|
assert.ElementsMatch(t, expected, p)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue