Tests: Fixed accidental use of comma instead of semicolon.

(cherry picked from commit dc380ee695)
This commit is contained in:
Scott González 2013-08-21 09:37:03 -04:00
parent 8e52648501
commit 1b207d37ab

View File

@ -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 ) {