From 1aa80724c82f4867515cc347312b6d4ad789bde1 Mon Sep 17 00:00:00 2001 From: Pavel Zavora Date: Wed, 2 Jun 2021 11:14:59 +0200 Subject: [PATCH] chore: fix staticcheck errors --- server/dashboards_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/dashboards_test.go b/server/dashboards_test.go index 72dbfff58..0d85b4056 100644 --- a/server/dashboards_test.go +++ b/server/dashboards_test.go @@ -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",