summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-02-16 11:23:25 +0000
committerLinus Groh <mail@linusgroh.de>2022-02-16 11:23:25 +0000
commitaf75503c173b974b368307bb3fdc974b620d76d1 (patch)
tree4fcfe102e3eeaf58cdbd274d5ed83bed9d7cbfda /Userland/Libraries/LibJS
parent1e0facb7ee71a8611052b4f87bd36a435d35050a (diff)
downloadserenity-af75503c173b974b368307bb3fdc974b620d76d1.zip
LibJS/Tests: Run prettier on modulo-basic.js
Diffstat (limited to 'Userland/Libraries/LibJS')
-rw-r--r--Userland/Libraries/LibJS/Tests/operators/modulo-basic.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Tests/operators/modulo-basic.js b/Userland/Libraries/LibJS/Tests/operators/modulo-basic.js
index 0c30123be9..7f8cd774b9 100644
--- a/Userland/Libraries/LibJS/Tests/operators/modulo-basic.js
+++ b/Userland/Libraries/LibJS/Tests/operators/modulo-basic.js
@@ -23,7 +23,7 @@ test("basic functionality", () => {
expect(1 % -0).toBeNaN();
expect(0 % 5).toBe(0);
expect(-0 % 5).toBe(-0);
- expect((-1) % -1).toBe(-0);
+ expect(-1 % -1).toBe(-0);
// test262 examples
expect(1 % null).toBeNaN();