1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

LibJS: Fix missing paren in modulo-basic.js test

This commit is contained in:
Andreas Kling 2020-04-05 11:10:44 +02:00
parent 240a5b5fd7
commit 058c614110

View file

@ -10,7 +10,7 @@ try {
assert(12 % 5 === 2);
assert(-1 % 2 === -1);
assert(1 % -2 === 1);
assert(isNaN(NaN % 2);
assert(isNaN(NaN % 2));
assert(1 % 2 === 1);
assert(2 % 3 === 2);
assert(-4 % 2 === -0);