mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
LibJS: Fix missing paren in modulo-basic.js test
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 07:54:26 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/058c614110d
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user