diff --git a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js index 5840e5daaa..e1845b0d77 100644 --- a/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js +++ b/test/built-ins/Date/prototype/toISOString/15.9.5.43-0-13.js @@ -5,19 +5,11 @@ es5id: 15.9.5.43-0-13 description: > Date.prototype.toISOString - RangeError is thrown when value of - date is Date(1970, 0, 100000001, 0, 0, 0, 1), the time zone is - UTC(0) + date is outside the valid range of time. ---*/ - var timeZoneMinutes = new Date().getTimezoneOffset() * (-1); - var date, dateStr; - + // As specified in ES5 15.9.1.14, time > 8.64e15 is not in the valid range. + var date = new Date(8.64e15 + 1); assert.throws(RangeError, function() { - if (timeZoneMinutes > 0) { - date = new Date(1970, 0, 100000001, 0, 0 + timeZoneMinutes + 60, 0, 1); - dateStr = date.toISOString(); - } else { - date = new Date(1970, 0, 100000001, 0, 0, 0, 1); - dateStr = date.toISOString(); - } + date.toISOString(); });