Skip to content

Commit dc380ee

Browse files
committed
Tests: Fixed accidental use of comma instead of semicolon.
1 parent e628d0e commit dc380ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/testsuite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ TestHelpers.testJshint = function( module ) {
8383

8484
globals = jshintrc.globals || {};
8585
delete jshintrc.globals;
86-
passed = JSHINT( source, jshintrc, globals ),
86+
passed = JSHINT( source, jshintrc, globals );
8787
errors = $.map( JSHINT.errors, function( error ) {
8888
// JSHINT may report null if there are too many errors
8989
if ( !error ) {

0 commit comments

Comments
 (0)