diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-04-07 10:30:07 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-04-09 09:26:58 -0400 |
commit | dc4b015a8b9acdb5bff2d5dd89737b3d8b64097f (patch) | |
tree | f2dc9ecccc32b33622aef1e597992e5a668efe56 /tests/unit/droppable/droppable_core.js | |
parent | 42566bdd037ac57cf7d6d7a5d059db2ba42518d9 (diff) | |
download | jquery-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.js | 4 |
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(); }); |