diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-03-26 09:18:58 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-03-26 09:22:35 -0400 |
commit | 38f93c4ac19d85649e08f666086c1234ff7360f3 (patch) | |
tree | 400c26e379a17433fcbed3079465e075b081d5a1 /tests/unit/draggable/draggable_options.js | |
parent | e9faec96ed0152a4943efa838b9025d63e3e3093 (diff) | |
download | jquery-ui-38f93c4ac19d85649e08f666086c1234ff7360f3.tar.gz jquery-ui-38f93c4ac19d85649e08f666086c1234ff7360f3.zip |
Draggable Tests: Minor style fixes and removing unnecessary setup and teardown for core tests.
Diffstat (limited to 'tests/unit/draggable/draggable_options.js')
-rw-r--r-- | tests/unit/draggable/draggable_options.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/draggable/draggable_options.js b/tests/unit/draggable/draggable_options.js index bf47b4354..8e1fde0bd 100644 --- a/tests/unit/draggable/draggable_options.js +++ b/tests/unit/draggable/draggable_options.js @@ -1056,11 +1056,11 @@ test( "scope", function() { $( "#droppable" ).droppable({ scope: "tasks" }); - TestHelpers.draggable.testDrag( element, element, 100, 100, 0, 0, "revert: valid reverts when dropped on a droppable" ); + TestHelpers.draggable.testDrag( element, element, 100, 100, 0, 0, "revert: valid reverts when dropped on a droppable in scope" ); $( "#droppable" ).droppable( "destroy" ).droppable({ scope: "nottasks" }); - TestHelpers.draggable.testDrag( element, element, 100, 100, 100, 100, "revert: valid reverts when dropped on a droppable" ); + TestHelpers.draggable.testDrag( element, element, 100, 100, 100, 100, "revert: valid reverts when dropped on a droppable out of scope" ); }); test( "scroll, scrollSensitivity, and scrollSpeed", function() { |