From cb79f2302b468b8e5dac5979a70f2ba70b1395cc Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Sat, 29 Jun 2024 17:20:06 +0900 Subject: [PATCH] test(adapter/bun): fixed `conninfo.test.ts` (#3059) --- src/adapter/bun/conninfo.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adapter/bun/conninfo.test.ts b/src/adapter/bun/conninfo.test.ts index b0a5096f..9c76512e 100644 --- a/src/adapter/bun/conninfo.test.ts +++ b/src/adapter/bun/conninfo.test.ts @@ -49,7 +49,7 @@ describe('getConnInfo', () => { }) it('should return undefined when addressType is invalid string', () => { const { server } = createRandomBunServer({ family: 'invalid' }) - const c = new Context(new HonoRequest(new Request('http://localhost/')), { env: { server } }) + const c = new Context(new Request('http://localhost/'), { env: { server } }) const info = getConnInfo(c)