test: remove dead math.MaxUint32 no-op and unused math import

Per CodeRabbit nitpick: the blank identifier assignment and math import
in TestBuildMultiRateLimiter_UnlimitedWhenNoLimits served no purpose.
The test already verifies correct behavior via NoError + NotNil assertions.
This commit is contained in:
Charles Wong
2026-03-11 09:12:06 -07:00
parent cca10d8c9c
commit cf0b8017c4
-3
View File
@@ -2,7 +2,6 @@ package passive
import (
"context"
"math"
"testing"
"time"
@@ -120,6 +119,4 @@ func TestBuildMultiRateLimiter_UnlimitedWhenNoLimits(t *testing.T) {
limiter, err := agent.buildMultiRateLimiter(context.Background(), 0, crl)
require.NoError(t, err)
require.NotNil(t, limiter)
// No assertion on internal state - just verify it doesn't error
_ = math.MaxUint32 // referenced for clarity
}