aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/os.test.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-19 04:16:31 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-19 04:16:31 -0800
commit180632255488cf89009b2549951102340cd4997c (patch)
tree1dfd62ac5ad2143e17cb3638da4bb9637fce71ca /test/bun.js/os.test.js
parent38b5a85d8ae030acdead6d169735317a66d23d94 (diff)
downloadbun-180632255488cf89009b2549951102340cd4997c.tar.gz
bun-180632255488cf89009b2549951102340cd4997c.tar.zst
bun-180632255488cf89009b2549951102340cd4997c.zip
Fix failing test
Diffstat (limited to 'test/bun.js/os.test.js')
-rw-r--r--test/bun.js/os.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/os.test.js b/test/bun.js/os.test.js
index 792d2cf40..f48354216 100644
--- a/test/bun.js/os.test.js
+++ b/test/bun.js/os.test.js
@@ -127,7 +127,7 @@ it("networkInterfaces", () => {
it("EOL", () => {
if (process.platform === "win32") expect(os.EOL).toBe("\\r\\n");
- else expect(os.EOL).toBe("\\n");
+ else expect(os.EOL).toBe("\n");
});
it("devNull", () => {