Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanGuedes committed Jan 30, 2025
1 parent 6e593aa commit d9fd3a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/distributor/distributor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2076,7 +2076,7 @@ func BenchmarkDistributor_PushWithPolicies(b *testing.B) {
req := makeWriteRequestWithLabels(10, 10, []string{lbs}, false, false, false)
b.ResetTimer()
for i := 0; i < b.N; i++ {
distributors[0].Push(ctx, req)
distributors[0].Push(ctx, req) //nolint:errcheck
}
})

Expand All @@ -2096,7 +2096,7 @@ func BenchmarkDistributor_PushWithPolicies(b *testing.B) {
distributors, _ := prepare(&testing.T{}, 1, 3, limits, nil)
b.ResetTimer()
for i := 0; i < b.N; i++ {
distributors[0].Push(ctx, req)
distributors[0].Push(ctx, req) //nolint:errcheck
}
})
}
Expand All @@ -2117,7 +2117,7 @@ func BenchmarkDistributor_PushWithPolicies(b *testing.B) {
distributors, _ := prepare(&testing.T{}, 1, 3, limits, nil)
b.ResetTimer()
for i := 0; i < b.N; i++ {
distributors[0].Push(ctx, req)
distributors[0].Push(ctx, req) //nolint:errcheck
}
})
}
Expand Down

0 comments on commit d9fd3a7

Please sign in to comment.