From b67999215cae86020ffbfe20097b83bb6a3d6b23 Mon Sep 17 00:00:00 2001 From: Matt Jaffee Date: Tue, 22 Oct 2019 12:58:56 -0500 Subject: [PATCH] fix loop lint --- server/cluster_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cluster_test.go b/server/cluster_test.go index 789d02082..139b0dd9e 100644 --- a/server/cluster_test.go +++ b/server/cluster_test.go @@ -640,7 +640,7 @@ func TestClusterResize_RemoveNode(t *testing.T) { func TestClusterMutualTLS(t *testing.T) { commandOpts := make([][]server.CommandOption, 3) configs := make([]*server.Config, 3) - for i, _ := range configs { + for i := range configs { conf := server.NewConfig() configs[i] = conf conf.Bind = "https://localhost:0"