From 4c540c493d89372ee575aee07c655f2861ae5850 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C4=8Ctvrtka?= Date: Tue, 12 Mar 2024 15:49:23 +0100 Subject: [PATCH] PMM-12686 Missed parallel in one test case. --- managed/services/grafana/auth_server_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/managed/services/grafana/auth_server_test.go b/managed/services/grafana/auth_server_test.go index 1750a27736..2e6301affd 100644 --- a/managed/services/grafana/auth_server_test.go +++ b/managed/services/grafana/auth_server_test.go @@ -304,6 +304,8 @@ func TestServerClientConnection(t *testing.T) { }) t.Run("Token auth - success", func(t *testing.T) { + t.Parallel() + nodeName := fmt.Sprintf("N1-%d", time.Now().UnixNano()) headersMD := metadata.New(map[string]string{ "Authorization": "Basic YWRtaW46YWRtaW4=",