]> source.dussan.org Git - jquery-ui.git/commitdiff
Widget tests: Remove workaround for old QUnit bug.
authorScott González <scott.gonzalez@gmail.com>
Tue, 25 Jan 2011 02:31:12 +0000 (21:31 -0500)
committerScott González <scott.gonzalez@gmail.com>
Tue, 25 Jan 2011 02:31:12 +0000 (21:31 -0500)
tests/unit/widget/widget_core.js

index 26059b96b6c229ace12e57d87ddf380a6ff6ffe9..be8a59fb44469801426406a0f2b61387dfa4dbb2 100644 (file)
@@ -183,7 +183,7 @@ test( "error handling", function() {
        $.error = error;
 });
 
-test("merge multiple option arguments", function() {
+test( "merge multiple option arguments", function() {
        expect( 1 );
        $.widget( "ui.testWidget", {
                _create: function() {
@@ -630,8 +630,6 @@ test( "auto-destroy - .remove() on child", function() {
                }
        });
        $( "#widget" ).testWidget().children().remove();
-       // http://github.com/jquery/qunit/pull/34
-       $.ui.testWidget.prototype.destroy = $.noop;
 });
 
 test( "auto-destroy - .empty()", function() {
@@ -642,8 +640,6 @@ test( "auto-destroy - .empty()", function() {
                }
        });
        $( "#widget" ).testWidget().empty();
-       // http://github.com/jquery/qunit/pull/34
-       $.ui.testWidget.prototype.destroy = $.noop;
 });
 
 test( "auto-destroy - .empty() on parent", function() {