diff --git a/test/suite/es6/Math.fround/Math.fround_NaN.js b/test/suite/es6/Math.fround/Math.fround_NaN.js index 55f958a206..783ef78e30 100644 --- a/test/suite/es6/Math.fround/Math.fround_NaN.js +++ b/test/suite/es6/Math.fround/Math.fround_NaN.js @@ -13,7 +13,7 @@ includes: [runTestCase.js] ---*/ function testcase() { - if(Math.fround(NaN) === NaN) { + if(Number.isNaN(Math.fround(NaN))) { return true; } } diff --git a/test/suite/es6/Math.hypot/Math.hypot_NaN.js b/test/suite/es6/Math.hypot/Math.hypot_NaN.js index 3077ceb2df..50e7c3bb5c 100644 --- a/test/suite/es6/Math.hypot/Math.hypot_NaN.js +++ b/test/suite/es6/Math.hypot/Math.hypot_NaN.js @@ -15,7 +15,7 @@ includes: [runTestCase.js] ---*/ function testcase() { - if(Math.hypot(NaN, 3) === NaN) { + if(Number.isNaN(Math.hypot(NaN, 3))) { return true; } } diff --git a/test/suite/es6/Math.trunc/Math.trunc_NaN.js b/test/suite/es6/Math.trunc/Math.trunc_NaN.js index 063fd43642..102657f009 100644 --- a/test/suite/es6/Math.trunc/Math.trunc_NaN.js +++ b/test/suite/es6/Math.trunc/Math.trunc_NaN.js @@ -13,7 +13,7 @@ includes: [runTestCase.js] ---*/ function testcase() { - if(Math.trunc(NaN) === NaN) { + if(Number.isNaN(Math.trunc(NaN))) { return true; } }