Skip to content

Commit

Permalink
Merge pull request #27 from customcommander/jshint-fix
Browse files Browse the repository at this point in the history
fix missing semicolons
  • Loading branch information
caridy committed May 12, 2014
2 parents ddd63e5 + 2acf91f commit 2b1e62f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript/src/cli/CLI.Logger.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ YUITest.CLI.Logger = function(){
cli.print(message + "\n"); cli.print(message + "\n");
} }


testRunner.subscribe(testRunner.BEGIN_EVENT, handleEvent) testRunner.subscribe(testRunner.BEGIN_EVENT, handleEvent);
testRunner.subscribe(testRunner.TEST_FAIL_EVENT, handleEvent); testRunner.subscribe(testRunner.TEST_FAIL_EVENT, handleEvent);
testRunner.subscribe(testRunner.TEST_PASS_EVENT, handleEvent); testRunner.subscribe(testRunner.TEST_PASS_EVENT, handleEvent);
testRunner.subscribe(testRunner.TEST_IGNORE_EVENT, handleEvent); testRunner.subscribe(testRunner.TEST_IGNORE_EVENT, handleEvent);
Expand Down
4 changes: 2 additions & 2 deletions javascript/src/cli/CLI.XUnit.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ YUITest.CLI.XUnit = function(){


return result.join("\n"); return result.join("\n");
} else { } else {
return "Unavailable." return "Unavailable.";
} }
} }


Expand Down Expand Up @@ -129,7 +129,7 @@ YUITest.CLI.XUnit = function(){
cli.print(message); cli.print(message);
} }


testRunner.subscribe(testRunner.BEGIN_EVENT, handleEvent) testRunner.subscribe(testRunner.BEGIN_EVENT, handleEvent);
testRunner.subscribe(testRunner.TEST_FAIL_EVENT, handleEvent); testRunner.subscribe(testRunner.TEST_FAIL_EVENT, handleEvent);
testRunner.subscribe(testRunner.TEST_PASS_EVENT, handleEvent); testRunner.subscribe(testRunner.TEST_PASS_EVENT, handleEvent);
testRunner.subscribe(testRunner.ERROR_EVENT, handleEvent); testRunner.subscribe(testRunner.ERROR_EVENT, handleEvent);
Expand Down

0 comments on commit 2b1e62f

Please sign in to comment.