aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/deprecated.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/deprecated.js')
-rw-r--r--test/unit/deprecated.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/unit/deprecated.js b/test/unit/deprecated.js
index bddd40105..7958ca450 100644
--- a/test/unit/deprecated.js
+++ b/test/unit/deprecated.js
@@ -46,8 +46,12 @@ QUnit.test( "hover() mouseenter mouseleave", function( assert ) {
assert.expect( 1 );
var times = 0,
- handler1 = function() { ++times; },
- handler2 = function() { ++times; };
+ handler1 = function() {
+ ++times;
+},
+ handler2 = function() {
+ ++times;
+};
jQuery( "#firstp" )
.hover( handler1, handler2 )