Skip to content
Permalink
Browse files
Removes empty, duplicate named test block. Fixes #9914
  • Loading branch information
rwaldron committed Jul 26, 2011
1 parent 27291ff commit b5f80a6
Showing 1 changed file with 2 additions and 5 deletions.
@@ -922,7 +922,7 @@ test("trigger(type, [data], [fn])", function() {
ok( true, "Native call was triggered" );
};


$elem.live('mouseenter', function(){
ok( true, 'Trigger mouseenter bound by live' );
});
@@ -938,7 +938,7 @@ test("trigger(type, [data], [fn])", function() {
$elem.die('mouseenter');

$elem.die('mouseleave');

// Triggers handlrs and native
// Trigger 5
$elem.bind("click", handler).trigger("click", [1, "2", "abc"]);
@@ -994,9 +994,6 @@ test("trigger(type, [data], [fn])", function() {
form.remove();
});

test("jQuery.Event.currentTarget", function(){
});

test("trigger(eventObject, [data], [fn])", function() {
expect(25);

0 comments on commit b5f80a6

Please sign in to comment.