From 79d6045f7acb2a86d59b5cdc5147a461ef4184b3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 4 May 2026 07:05:49 -0400 Subject: [PATCH] fix(server/m7-365): silence unused-pool-param lint in history test --- internal/api/me_history_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/me_history_test.go b/internal/api/me_history_test.go index 58fdb3d9..96e224c0 100644 --- a/internal/api/me_history_test.go +++ b/internal/api/me_history_test.go @@ -24,7 +24,7 @@ func newHistoryRouter(h *handlers) chi.Router { return r } -func doGetHistory(h *handlers, pool *pgxpool.Pool, user dbq.User, query string) *httptest.ResponseRecorder { +func doGetHistory(h *handlers, _ *pgxpool.Pool, user dbq.User, query string) *httptest.ResponseRecorder { url := "/api/me/history" if query != "" { url += "?" + query