diff --git a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js index c16a442f2762c45dfcff1eaa6c3019fc3b49889b..e5c901845b9ecce213687541b9a4a3c25fdd7d05 100644 --- a/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js +++ b/test/built-ins/Array/prototype/concat/Array.prototype.concat_array-like-negative-length.js @@ -9,14 +9,14 @@ description: Array.prototype.concat array like negative length includes: [compareArray.js] ---*/ var obj = { - "length": -6, + "length": -4294967294, "1": "A", "3": "B", "5": "C" }; obj[Symbol.isConcatSpreadable] = true; assert(compareArray([].concat(obj), [])); -obj.length = -6.7; +obj.length = -4294967294; assert(compareArray([].concat(obj), [])); -obj.length = "-6"; +obj.length = "-4294967294"; assert(compareArray([].concat(obj), []));