chore: fix staticcheck errors

pull/5760/head
Pavel Zavora 2021-06-02 11:14:59 +02:00
parent f8054fbbb3
commit 1aa80724c8
1 changed files with 2 additions and 2 deletions

View File

@ -333,7 +333,7 @@ func Test_newDashboardResponse(t *testing.T) {
GroupBy: chronograf.GroupBy{
Tags: []string{},
},
Tags: make(map[string][]string, 0),
Tags: make(map[string][]string),
AreTagsAccepted: false,
Shifts: []chronograf.TimeShift{
{
@ -397,7 +397,7 @@ func Test_newDashboardResponse(t *testing.T) {
GroupBy: chronograf.GroupBy{
Tags: []string{},
},
Tags: make(map[string][]string, 0),
Tags: make(map[string][]string),
AreTagsAccepted: false,
Range: &chronograf.DurationRange{
Lower: "now() - 15m",