aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_core.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2015-04-07 10:30:07 -0400
committerScott González <scott.gonzalez@gmail.com>2015-04-09 09:26:58 -0400
commitdc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (patch)
treef2dc9ecccc32b33622aef1e597992e5a668efe56 /tests/unit/droppable/droppable_core.js
parent42566bdd037ac57cf7d6d7a5d059db2ba42518d9 (diff)
downloadjquery-ui-dc4b015a8b9acdb5bff2d5dd89737b3d8b64097f.tar.gz
jquery-ui-dc4b015a8b9acdb5bff2d5dd89737b3d8b64097f.zip
Tests: Widget test helpers extend the main helper
Ref #10119 Ref gh-1528
Diffstat (limited to 'tests/unit/droppable/droppable_core.js')
-rw-r--r--tests/unit/droppable/droppable_core.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/droppable/droppable_core.js b/tests/unit/droppable/droppable_core.js
index 9ea789544..25d052a59 100644
--- a/tests/unit/droppable/droppable_core.js
+++ b/tests/unit/droppable/droppable_core.js
@@ -2,7 +2,7 @@ define( [
"jquery",
"./droppable_test_helpers",
"ui/droppable"
-], function( $, droppableTestHelpers ) {
+], function( $, testHelper ) {
module("droppable: core");
@@ -20,7 +20,7 @@ test("element types", function() {
(typeName === "table" && el.append("<tr><td>content</td></tr>"));
el.droppable();
- droppableTestHelpers.shouldDrop();
+ testHelper.shouldDrop();
el.droppable("destroy");
el.remove();
});