chore: fix staticcheck errors
parent
f8054fbbb3
commit
1aa80724c8
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue