From bfe6e6513c599f14c964ccc5d472ff4624c67c73 Mon Sep 17 00:00:00 2001 From: Michael Mac-Vicar Date: Thu, 27 Feb 2025 11:48:22 -0300 Subject: [PATCH] Fix lint issue --- tests/library/client-certificates.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/library/client-certificates.spec.ts b/tests/library/client-certificates.spec.ts index b2b4960b6b..653bc2ede5 100644 --- a/tests/library/client-certificates.spec.ts +++ b/tests/library/client-certificates.spec.ts @@ -193,7 +193,7 @@ test.describe('fetch', () => { keyPath: asset('client-certificates/client/trusted/key.pem'), }], }); - const response = await request.get(`https://www.hello.local:${new URL(serverURL).port}`, { __testHookLookup }); + const response = await request.get(`https://www.hello.local:${new URL(serverURL).port}`, { __testHookLookup } as any); expect(response.url()).toBe(`https://www.hello.local:${new URL(serverURL).port}/`); expect(response.status()).toBe(200); expect(await response.text()).toContain('Hello Alice, your certificate was issued by localhost!');