diff --git a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T1.js b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T1.js index c3bcf25829..1421c43661 100644 --- a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T1.js +++ b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T1.js @@ -1,7 +1,7 @@ // Copyright (c) 2014 Hank Yates. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. -/* +/** * @description Testing Array.from when passed a String * @author Hank Yates (hankyates@gmail.com) */ diff --git a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T2.js b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T2.js index e1776536e8..b9012e7e89 100644 --- a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T2.js +++ b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T2.js @@ -1,7 +1,7 @@ // Copyright (c) 2014 Hank Yates. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. -/* +/** * @description Testing Array.from when passed an Object is passed * @author Hank Yates (hankyates@gmail.com) */ diff --git a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T3.js b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T3.js index 5cc03542e4..f9bb4ff534 100644 --- a/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T3.js +++ b/test/suite/es6/ch22/22.1/22.1.2/S22.1.2.1_T3.js @@ -1,10 +1,10 @@ // Copyright (c) 2014 Hank Yates. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. -/* +/** * @description Testing Array.from when passed an undefined * @author Hank Yates (hankyates@gmail.com) - * / + */ runTestCase(function () { try { diff --git a/tools/packaging/packagerConfig.py b/tools/packaging/packagerConfig.py index fddb27f611..16fe7dbc63 100644 --- a/tools/packaging/packagerConfig.py +++ b/tools/packaging/packagerConfig.py @@ -117,6 +117,6 @@ class SCAbstraction(object): ''' Source control add of a file. ''' - subprocess.call(["hg", "add", filename]) + subprocess.call(["git", "add", filename]) SC_HELPER = SCAbstraction() diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py index b2d4397387..5afab6d0a4 100755 --- a/tools/packaging/test262.py +++ b/tools/packaging/test262.py @@ -222,7 +222,7 @@ class TestCase(object): self.test = testRecord["test"] del testRecord["test"] del testRecord["header"] - del testRecord["commentary"] + testRecord.pop("commentary", None) # do not throw if missing self.testRecord = testRecord;