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-11-26 14:48:47 -0500 |
commit | 1b207d37abc723a41b2b397a83bfffa8e4982d24 (patch) | |
tree | 125221a2da9006b5b931f797b95dda4888b76026 | |
parent | 8e52648501ba1f9c2b862b6f7638385471f27546 (diff) | |
download | jquery-ui-1b207d37abc723a41b2b397a83bfffa8e4982d24.tar.gz jquery-ui-1b207d37abc723a41b2b397a83bfffa8e4982d24.zip |
Tests: Fixed accidental use of comma instead of semicolon.
(cherry picked from commit dc380ee6955393d4bc3bbc334cc6724cefa5b48c)
-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 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 ) { |