From d3d04540c024274013cd8e2ac4afd42564babff0 Mon Sep 17 00:00:00 2001 From: Nicolas Varrot Date: Tue, 10 Mar 2026 09:02:19 +0000 Subject: [PATCH] chore: remove unused eslint-disable directive in gateway test --- src/lib/__tests__/gateway.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/__tests__/gateway.test.ts b/src/lib/__tests__/gateway.test.ts index 67a8692..82bff2d 100644 --- a/src/lib/__tests__/gateway.test.ts +++ b/src/lib/__tests__/gateway.test.ts @@ -318,7 +318,6 @@ describe('GatewayClient', () => { const mockIdentity: DeviceIdentity = { id: 'device-id-abc', publicKeyRaw: 'pubkey-raw-abc', - // eslint-disable-next-line @typescript-eslint/no-explicit-any keyPair: { privateKey: {} as CryptoKey, publicKey: {} as CryptoKey }, }; gw.setDeviceIdentity(mockIdentity);