diff options
author | 2022-12-06 18:15:20 -0800 | |
---|---|---|
committer | 2022-12-06 18:15:20 -0800 | |
commit | 84b2cc1739b9191cc51b02a9989bc07d38afca11 (patch) | |
tree | 3e3b1e389326f2272d63c0d9acb854a2c84d3b8b | |
parent | 15ce587fa20c9c34413c2b99e0187d3e3072f943 (diff) | |
download | bun-84b2cc1739b9191cc51b02a9989bc07d38afca11.tar.gz bun-84b2cc1739b9191cc51b02a9989bc07d38afca11.tar.zst bun-84b2cc1739b9191cc51b02a9989bc07d38afca11.zip |
fix child process test
Diffstat (limited to '')
-rw-r--r-- | test/bun.js/child_process.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/child_process.test.ts b/test/bun.js/child_process.test.ts index 83b0954fc..bdb197180 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!"); }); }); |