Skip to content

Commit

Permalink
PMM-12848 fix linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
BupycHuk committed Aug 8, 2024
1 parent bf8a50b commit 9b9767c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exporter/currentop_collector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 9b9767c

Please sign in to comment.