Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/index.html

Issue 29333347: Issue 3495 - Error Running Tests - SyntaxError: missing ] after element list (Closed)
Patch Set: Created Jan. 9, 2016, 12:40 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/content/index.html
===================================================================
--- a/chrome/content/index.html
+++ b/chrome/content/index.html
@@ -25,7 +25,7 @@
else
{
let {getTests} = require("main");
- result = ["tests/" + test + ".js" for (test of getTests())];
+ result = getTests().map(test => "tests/" + test + ".js");
}
result.sort();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld