aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/bun.js/child_process.test.ts2
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!");
});
});