]> source.dussan.org Git - jquery-ui.git/commitdiff
datepicker: removing odd ticket test, has no assertions
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 19 Sep 2009 13:36:49 +0000 (13:36 +0000)
committerJörn Zaefferer <joern.zaefferer@gmail.com>
Sat, 19 Sep 2009 13:36:49 +0000 (13:36 +0000)
tests/unit/datepicker/datepicker_tickets.js

index de5f750ce33cfb760c181823ad0b7b7be6e79755..38c5e89f32cf74b797ac6fa629774482731277e1 100644 (file)
@@ -5,18 +5,4 @@
 
 module("datepicker: tickets");
 
-test('#4055: onclick events contain references to "jQuery"', function() {
-       // no assertions, if the test fails, there will be an error
-       
-       var _jQuery = jQuery;
-       jQuery = null;
-       
-       $('<div/>').appendTo('body').datepicker()
-       // the third weekend day always exists
-       .find('tbody .ui-datepicker-week-end:eq(3)').click().end()
-       .datepicker('destroy');
-       
-       jQuery = _jQuery;
-});
-
 })(jQuery);