diff options
Diffstat (limited to 'console/harness/helper.js')
-rw-r--r-- | console/harness/helper.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console/harness/helper.js b/console/harness/helper.js index d44f3c329..75a6b93ba 100644 --- a/console/harness/helper.js +++ b/console/harness/helper.js @@ -13,13 +13,13 @@ function Presenter() { table,
backLink,
- globalSection = new Section(null, "0", "ECMA-262"),
+ globalSection = new Section(null, "0", STANDARD),
currentSection = globalSection,
tests = {},
totalTests = 0;
var progressBar;
- TOCFILEPATH = "metadata/ecma-262-toc.xml";
+ TOCFILEPATH = "metadata/" + STANDARD.toLowerCase() + "-toc.xml";
//**INTERFACE****************************************************************
/* Updates progress with the given test, which should have its results in it as well. */
this.addTestResult = function(test) {
|