removed uncecessary clone for event names array to fix the tests

This commit is contained in:
John Bender 2011-04-27 22:04:00 -07:00
parent c2e65107c0
commit 31604bb75a

View file

@ -40,7 +40,7 @@
$.testHelper.reloadLib(libName);
$.each($.fn.clone(events), function( i, name ) {
$.each(events, function( i, name ) {
ok($.fn[name] !== undefined, name + "is not undefined");
});
});