aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-08-21 09:37:03 -0400
committerScott González <scott.gonzalez@gmail.com>2013-08-21 09:37:03 -0400
commitdc380ee6955393d4bc3bbc334cc6724cefa5b48c (patch)
treebc6c3db91abaee9ac036428a457b99a2d65c04f7 /tests
parente628d0e4ba89eecee2c9b0d4cfb214523cad2ab4 (diff)
downloadjquery-ui-dc380ee6955393d4bc3bbc334cc6724cefa5b48c.tar.gz
jquery-ui-dc380ee6955393d4bc3bbc334cc6724cefa5b48c.zip
Tests: Fixed accidental use of comma instead of semicolon.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/testsuite.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/testsuite.js b/tests/unit/testsuite.js
index 6e840f415..cef24e93b 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 ) {