aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/draggable/draggable_options.js
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2013-03-26 09:18:58 -0400
committerMike Sherov <mike.sherov@gmail.com>2013-03-26 09:22:35 -0400
commit38f93c4ac19d85649e08f666086c1234ff7360f3 (patch)
tree400c26e379a17433fcbed3079465e075b081d5a1 /tests/unit/draggable/draggable_options.js
parente9faec96ed0152a4943efa838b9025d63e3e3093 (diff)
downloadjquery-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.js4
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() {