From c19126a1cef9c0978a43297e6320ddccc5a5adc6 Mon Sep 17 00:00:00 2001 From: syumai Date: Wed, 17 Apr 2024 00:59:25 +0900 Subject: [PATCH] fix test --- exp/hono/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exp/hono/context.go b/exp/hono/context.go index f9ccdcf..81ce831 100644 --- a/exp/hono/context.go +++ b/exp/hono/context.go @@ -26,7 +26,7 @@ func newContext(ctxObj js.Value) *Context { if err != nil { panic(err) } - ctx := runtimecontext.New(context.Background(), reqObj, jsutil.RuntimeContext) + ctx := runtimecontext.New(context.Background(), reqObj) req = req.WithContext(ctx) return req }),