Merge pull request #52 from smikes/syntax-error-isAsyncTest-sth

sth: correct syntax error in new fn isAsyncTest
This commit is contained in:
Brian Terlson 2014-07-22 17:33:02 -07:00
commit dd821f2700
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ function BrowserRunner() {
}
function isAsyncTest(code) {
return /\$DONE()/.test(code));
return /\$DONE()/.test(code);
}
/* Run the test. */