From 84b2cc1739b9191cc51b02a9989bc07d38afca11 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Tue, 6 Dec 2022 18:15:20 -0800 Subject: [PATCH] fix child process test --- test/bun.js/child_process.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bun.js/child_process.test.ts b/test/bun.js/child_process.test.ts index 83b0954fc9..bdb1971806 100644 --- a/test/bun.js/child_process.test.ts +++ b/test/bun.js/child_process.test.ts @@ -313,7 +313,7 @@ describe("execFileSync()", () => { encoding: "utf8", }, ); - expect(result.trim()).toBe("hello world!"); + expect(result.trim()).toBe("data: hello world!"); }); });