aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-08-22 16:12:54 -0700
committerNorbert Lindenberg <ecmascript@lindenbergsoftware.com>2012-08-22 16:12:54 -0700
commit9f4a513496939972d535d32405c9173d06d48259 (patch)
tree6d1c077629712ef66c36a77bf36907f574c0f93f /test
parentebdd0a99e6cd293b5a00af52ef3ef91eddd6e089 (diff)
parent9a4b4011f8b8f3fa9f8b6b5de4713e83f6689ed9 (diff)
Merged changes.
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 1e97d4a90..04c6cb6b7 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) {