Skip to content

Commit 35cc1b3

Browse files
ykyzgibfahn
authored andcommittedDec 19, 2017
test: fix isNAN->Number.isNAN
PR-URL: #17309 Reviewed-By: Yosuke Furukawa <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 32ebcf7 commit 35cc1b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/parallel/test-writedouble.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ function test(clazz) {
168168
// Darwin ia32 does the other kind of NaN.
169169
// Compiler bug. No one really cares.
170170
assert(0x7F === buffer[15] || 0xFF === buffer[15]);
171-
assert.ok(isNaN(buffer.readDoubleBE(0)));
172-
assert.ok(isNaN(buffer.readDoubleLE(8)));
171+
assert.ok(Number.isNaN(buffer.readDoubleBE(0)));
172+
assert.ok(Number.isNaN(buffer.readDoubleLE(8)));
173173
}
174174

175175

0 commit comments

Comments
 (0)
Please sign in to comment.