From 9b9767ceb331b8351f0f3791e4220fc6a6eff777 Mon Sep 17 00:00:00 2001 From: Nurlan Moldomurov Date: Thu, 8 Aug 2024 20:37:22 +0300 Subject: [PATCH] PMM-12848 fix linter. --- exporter/currentop_collector_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exporter/currentop_collector_test.go b/exporter/currentop_collector_test.go index db6b8d1a..72168b64 100644 --- a/exporter/currentop_collector_test.go +++ b/exporter/currentop_collector_test.go @@ -49,7 +49,7 @@ func TestCurrentopCollector(t *testing.T) { go func() { defer wg.Done() coll := "testcol_01" - for j := 0; j < 100; j++ { // nolint:intrange // false positive + for j := 0; j < 100; j++ { //nolint:intrange // false positive _, err := database.Collection(coll).InsertOne(ctx, bson.M{"f1": j, "f2": "2"}) assert.NoError(t, err) }