diff --git a/test/built-ins/parseInt/S15.1.2.2_A2_T2.js b/test/built-ins/parseInt/S15.1.2.2_A2_T2.js index b40f967595..bb1e0ddfe3 100644 --- a/test/built-ins/parseInt/S15.1.2.2_A2_T2.js +++ b/test/built-ins/parseInt/S15.1.2.2_A2_T2.js @@ -1,9 +1,5 @@ // Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. -assert.sameValue(parseInt("\u00201"), parseInt("1"), 'parseInt("\\u00201") must return the same value returned by parseInt("1")'); -assert.sameValue(parseInt("\u0020\u0020-1"), parseInt("-1"), 'parseInt("\\u0020\\u0020-1") must return the same value returned by parseInt("-1")'); -assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")'); -assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")'); /*--- info: Operator remove leading StrWhiteSpaceChar @@ -11,6 +7,11 @@ esid: sec-parseint-string-radix description: "StrWhiteSpaceChar :: SP (U+0020)" ---*/ +assert.sameValue(parseInt("\u00201"), parseInt("1"), 'parseInt("\\u00201") must return the same value returned by parseInt("1")'); +assert.sameValue(parseInt("\u0020\u0020-1"), parseInt("-1"), 'parseInt("\\u0020\\u0020-1") must return the same value returned by parseInt("-1")'); +assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")'); +assert.sameValue(parseInt(" 1"), parseInt("1"), 'parseInt(" 1") must return the same value returned by parseInt("1")'); + assert.sameValue( parseInt(" \u0020 \u0020-1"), parseInt("-1"),