From 8a548b5ee05ed46d9ba67083b72b213640507091 Mon Sep 17 00:00:00 2001 From: Nurlan Moldomurov Date: Wed, 31 May 2023 18:31:26 +0300 Subject: [PATCH] PMM-12182 Fix linters. --- managed/services/grafana/auth_server_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/managed/services/grafana/auth_server_test.go b/managed/services/grafana/auth_server_test.go index 86e71fb5c6..7ef2246e4e 100644 --- a/managed/services/grafana/auth_server_test.go +++ b/managed/services/grafana/auth_server_test.go @@ -384,7 +384,7 @@ func TestAuthServerAddVMGatewayToken(t *testing.T) { } func Test_cleanPath(t *testing.T) { - t.Parallel() + t.Parallel() tests := []struct { path string expected string @@ -401,9 +401,9 @@ func Test_cleanPath(t *testing.T) { }, } for _, tt := range tests { - tt := tt + tt := tt t.Run(tt.path, func(t *testing.T) { - t.Parallel() + t.Parallel() cleanedPath, err := cleanPath(tt.path) require.NoError(t, err) assert.Equalf(t, tt.expected, cleanedPath, "cleanPath(%v)", tt.path)