@@ -1672,9 +1672,9 @@ QUnit.test( ".on()/.off()", function( assert ) {
1672
1672
1673
1673
// Test binding with different this object, event data, and trigger data
1674
1674
jQuery ( "#body" ) . on ( "click" , "#foo" , true , function ( e , data ) {
1675
- assert . equal ( e . data , true , "on with with different this object, event data, and trigger data" ) ;
1676
- assert . equal ( this . foo , "bar" , "on with with different this object, event data, and trigger data" ) ;
1677
- assert . equal ( data , true , "on with with different this object, event data, and trigger data" ) ;
1675
+ assert . equal ( e . data , true , "on with different this object, event data, and trigger data" ) ;
1676
+ assert . equal ( this . foo , "bar" , "on with different this object, event data, and trigger data" ) ;
1677
+ assert . equal ( data , true , "on with different this object, event data, and trigger data" ) ;
1678
1678
} . bind ( { "foo" : "bar" } ) ) ;
1679
1679
jQuery ( "#foo" ) . trigger ( "click" , true ) ;
1680
1680
jQuery ( "#body" ) . off ( "click" , "#foo" ) ;
0 commit comments