Skip to content

Commit 05fef98

Browse files
committed
fixc tests/test_builtin.js
1 parent 80ced9b commit 05fef98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_builtin.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ function test_number()
345345
assert(Number.isNaN(Number("-")));
346346
assert(Number.isNaN(Number("\x00a")));
347347

348-
// TODO: Fix rounding errors on Windows.
349-
if (os.platform === 'win32') {
348+
// TODO: Fix rounding errors on Windows/Cygwin.
349+
if (['win32', 'cygwin'].includes(os.platform)) {
350350
return;
351351
}
352352

0 commit comments

Comments
 (0)