From bf3abea7764adb83b7827265da011e0a7344775b Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Tue, 12 May 2026 21:52:06 +0200 Subject: [PATCH] fix(core-audit): rename unused withAudit test param to _input --- packages/core-audit/src/with-audit.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-audit/src/with-audit.test.ts b/packages/core-audit/src/with-audit.test.ts index 2dc1954..0ab2e8b 100644 --- a/packages/core-audit/src/with-audit.test.ts +++ b/packages/core-audit/src/with-audit.test.ts @@ -12,7 +12,7 @@ function makeAuditLog(): IAuditLog { describe("withAudit", () => { it("returns an Audited", () => { const auditLog = makeAuditLog(); - const fn = async (input: { id: string }) => ({ ok: true }); + const fn = async (_input: { id: string }) => ({ ok: true }); const wrapped = withAudit(auditLog, fn); expectTypeOf(wrapped).toMatchTypeOf>(); });