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:
parent
240a5b5fd7
commit
058c614110
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue