Removes empty, duplicate named test block. Fixes #9914

This commit is contained in:
Rick Waldron 2011-07-26 11:49:23 -04:00
parent 27291ff06d
commit b5f80a6e31

View File

@ -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);