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 c3bcf258297c98de6151e8e29b86e810431d12d9..1421c43661ebaba616e589df3ce5d20c0cfee1c6 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 e1776536e8dc815ed060f6de73bf889d8400829b..b9012e7e890bb16dc1472e90a4b9fee2b60b72c5 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 5cc03542e42ead5416c06eb750885b290bf6433f..f9bb4ff5349860e588f5bd3e65409e4368bb00cf 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 fddb27f611e500901ba02de0814f2c658ee31e36..16fe7dbc6341fececaa80980c425e6ffc2c4a4e2 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 b2d43973876e3448e8ab4f3e489788a0d912225c..5afab6d0a420d45f4856697f2045d3a4725ac5fb 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;