From 895f3824b5ff2e0e50deef400a8bc33f1a0c77e3 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Mon, 11 Sep 2023 10:43:33 -0700 Subject: [PATCH] update test --- test/js/node/http/node-http.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/node/http/node-http.test.ts b/test/js/node/http/node-http.test.ts index 6fa3e18318..f80a6c631a 100644 --- a/test/js/node/http/node-http.test.ts +++ b/test/js/node/http/node-http.test.ts @@ -870,7 +870,7 @@ describe("node:http", () => { }); }); - test("should listen on port if string, issue#4582", () => { + test("should listen on port if string, issue#4582", done => { const server = createServer((req, res) => { res.end(); });