aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/fs-stream.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/fs-stream.js')
-rw-r--r--test/bun.js/fs-stream.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/bun.js/fs-stream.js b/test/bun.js/fs-stream.js
index 1ef3ee71c..db56fdfaa 100644
--- a/test/bun.js/fs-stream.js
+++ b/test/bun.js/fs-stream.js
@@ -3,15 +3,13 @@ import { createReadStream, createWriteStream, readFileSync } from "fs";
await new Promise((resolve, reject) => {
createReadStream("fs-stream.js")
.pipe(createWriteStream("/tmp/fs-stream.copy.js"))
- .once("error", (err) => reject(err))
+ .once("error", err => reject(err))
.once("finish", () => {
try {
const copied = readFileSync("/tmp/fs-stream.copy.js", "utf8");
const real = readFileSync("/tmp/fs-stream.js", "utf8");
if (copied !== real) {
- reject(
- new Error("fs-stream.js is not the same as fs-stream.copy.js"),
- );
+ reject(new Error("fs-stream.js is not the same as fs-stream.copy.js"));
return;
}