From 1b207d37abc723a41b2b397a83bfffa8e4982d24 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 21 Aug 2013 09:37:03 -0400 Subject: [PATCH] Tests: Fixed accidental use of comma instead of semicolon. (cherry picked from commit dc380ee6955393d4bc3bbc334cc6724cefa5b48c) --- tests/unit/testsuite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/testsuite.js b/tests/unit/testsuite.js index ddc59ed08..eab1d4ebe 100644 --- a/tests/unit/testsuite.js +++ b/tests/unit/testsuite.js @@ -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 ) { -- 2.39.5