From 734c867ac332abe662b55530243949e7cdbd0de4 Mon Sep 17 00:00:00 2001 From: Tom Schuster Date: Thu, 10 Dec 2020 13:08:34 +0100 Subject: [PATCH] Remove test code between license and front matter The script that we use for updating SpiderMonkey's copy of test262 doesn't like this. @rwaldron r? --- test/built-ins/parseInt/S15.1.2.2_A2_T2.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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"),