Skip to content

Commit

Permalink
PMM-12182 Fix linters.
Browse files Browse the repository at this point in the history
  • Loading branch information
BupycHuk committed May 31, 2023
1 parent 5d6fdcc commit 03b95b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions managed/services/grafana/auth_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 03b95b3

Please sign in to comment.