fix(server/m7-365): silence unused-pool-param lint in history test

This commit is contained in:
2026-05-04 07:05:49 -04:00
parent aa5b277b6b
commit 79d6045f7a
+1 -1
View File
@@ -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