Tests: Fixed accidental use of comma instead of semicolon.

This commit is contained in:
Scott González 2013-08-21 09:37:03 -04:00
parent e628d0e4ba
commit dc380ee695

View File

@ -83,7 +83,7 @@ TestHelpers.testJshint = function( module ) {
globals = jshintrc.globals || {}; globals = jshintrc.globals || {};
delete jshintrc.globals; delete jshintrc.globals;
passed = JSHINT( source, jshintrc, globals ), passed = JSHINT( source, jshintrc, globals );
errors = $.map( JSHINT.errors, function( error ) { errors = $.map( JSHINT.errors, function( error ) {
// JSHINT may report null if there are too many errors // JSHINT may report null if there are too many errors
if ( !error ) { if ( !error ) {