aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-01-24 21:31:12 -0500
committerScott González <scott.gonzalez@gmail.com>2011-01-24 21:31:12 -0500
commit4a384c63ffa4c4b588b92b2a983a6710bc518284 (patch)
treecc2871bf24231bc34a40adb1d4eb6a169c978250 /tests
parent8034cc38038ff1246cd98caecd517f9685d50f8b (diff)
downloadjquery-ui-4a384c63ffa4c4b588b92b2a983a6710bc518284.tar.gz
jquery-ui-4a384c63ffa4c4b588b92b2a983a6710bc518284.zip
Widget tests: Remove workaround for old QUnit bug.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/widget/widget_core.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/unit/widget/widget_core.js b/tests/unit/widget/widget_core.js
index 26059b96b..be8a59fb4 100644
--- a/tests/unit/widget/widget_core.js
+++ b/tests/unit/widget/widget_core.js
@@ -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() {