cli/third-party/github.com/letsencrypt/boulder/ratelimits/source_test.go
2025-05-30 12:50:20 -04:00

11 lines
189 B
Go

package ratelimits
import (
"testing"
"github.com/jmhodges/clock"
)
func newInmemTestLimiter(t *testing.T, clk clock.FakeClock) *Limiter {
return newTestLimiter(t, newInmem(), clk)
}