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
Notes: sideshowbarker 2024-07-19 07:54:26 +09:00

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);