diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-08-21 09:37:03 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-08-21 09:37:03 -0400 |
commit | dc380ee6955393d4bc3bbc334cc6724cefa5b48c (patch) | |
tree | bc6c3db91abaee9ac036428a457b99a2d65c04f7 /tests | |
parent | e628d0e4ba89eecee2c9b0d4cfb214523cad2ab4 (diff) | |
download | jquery-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.js | 2 |
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 ) { |