aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/harness/helper.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/harness/helper.js b/test/harness/helper.js
index d44f3c329..75a6b93ba 100644
--- a/test/harness/helper.js
+++ b/test/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) {