From c29bfb65ff489e5c3c02ec37d2a015f0376f09cf Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 02:02:03 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- test/js/bun/spawn/spawn.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/js/bun/spawn/spawn.test.ts b/test/js/bun/spawn/spawn.test.ts index da9e3e0457..bccb55510b 100644 --- a/test/js/bun/spawn/spawn.test.ts +++ b/test/js/bun/spawn/spawn.test.ts @@ -264,7 +264,7 @@ for (let [gcTick, label] of [ }); await exited; - expect(await Bun.file(tmp + "out.123.txt").text() == hugeString).toBeTrue(); + expect((await Bun.file(tmp + "out.123.txt").text()) == hugeString).toBeTrue(); }); it("Bun.file() works as stdout", async () => {