From cc4326cd829decc95d1f1f23998f97705637e04b Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Tue, 31 Jan 2023 17:55:16 -0800 Subject: Re-run prettier after changes --- test/bun.js/node-http.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/bun.js/node-http.test.ts') diff --git a/test/bun.js/node-http.test.ts b/test/bun.js/node-http.test.ts index 24b3f1c85..cdb0d4758 100644 --- a/test/bun.js/node-http.test.ts +++ b/test/bun.js/node-http.test.ts @@ -22,7 +22,7 @@ describe("node:http", () => { const server = createServer((req, res) => { res.writeHead(200, { "Content-Type": "text/plain" }); - req.on("data", (chunk) => { + req.on("data", chunk => { res.write(chunk); }); @@ -49,7 +49,7 @@ describe("node:http", () => { const server = createServer((req, res) => { res.writeHead(200, { "Content-Type": "text/plain" }); - req.on("data", (chunk) => { + req.on("data", chunk => { res.write(chunk); }); -- cgit v1.2.3