aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/spinner/deprecated.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/spinner/deprecated.js')
-rw-r--r--tests/unit/spinner/deprecated.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/spinner/deprecated.js b/tests/unit/spinner/deprecated.js
index baa36acf3..f259ceb2e 100644
--- a/tests/unit/spinner/deprecated.js
+++ b/tests/unit/spinner/deprecated.js
@@ -1,8 +1,9 @@
define( [
"qunit",
"jquery",
+ "lib/helper",
"ui/widgets/spinner"
-], function( QUnit, $ ) {
+], function( QUnit, $, helper ) {
var originalSpinner = $.ui.spinner.prototype;
QUnit.module( "spinner: deprecated", {
@@ -26,6 +27,7 @@ QUnit.module( "spinner: deprecated", {
afterEach: function() {
$.ui.spinner.prototype = originalSpinner;
+ return helper.moduleAfterEach.apply( this, arguments );
}
} );