Skip to content

Commit

Permalink
Tests: Fixed accidental use of comma instead of semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Aug 21, 2013
1 parent e628d0e commit dc380ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/testsuite.js
Expand Up @@ -83,7 +83,7 @@ TestHelpers.testJshint = function( module ) {

globals = jshintrc.globals || {};
delete jshintrc.globals;
passed = JSHINT( source, jshintrc, globals ),
passed = JSHINT( source, jshintrc, globals );
errors = $.map( JSHINT.errors, function( error ) {
// JSHINT may report null if there are too many errors
if ( !error ) {
Expand Down

0 comments on commit dc380ee

Please sign in to comment.