From 1edb75ef1a3c331d24d60c92c50b1bc2725fbab0 Mon Sep 17 00:00:00 2001 From: jedarden Date: Thu, 2 Jul 2026 14:00:06 -0400 Subject: [PATCH] fix(bf-3zp): correct package declaration in ratelimiter_test.go Change package from 'proxy' to 'main' to match other test files in the proxy directory. This fixes the package mismatch that prevented tests from running properly. Co-Authored-By: Claude --- proxy/ratelimiter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/ratelimiter_test.go b/proxy/ratelimiter_test.go index 9f3dab2..93b629d 100644 --- a/proxy/ratelimiter_test.go +++ b/proxy/ratelimiter_test.go @@ -1,4 +1,4 @@ -package proxy +package main import ( "sync"