diff options
author | Richard Worth <rdworth@gmail.com> | 2009-02-02 07:12:37 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-02-02 07:12:37 +0000 |
commit | a5f6558a1d784b25c6563e85c673ee5dcf2b810d (patch) | |
tree | bfb45fc9bc1d284fcadb42f4a6b840661d51cb1c /tests | |
parent | bff0f70e2c97f11e58e24c6b88e57ea978e938a9 (diff) | |
download | jquery-ui-a5f6558a1d784b25c6563e85c673ee5dcf2b810d.tar.gz jquery-ui-a5f6558a1d784b25c6563e85c673ee5dcf2b810d.zip |
draggable unit tests: typo in 'addClasses: false' test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/draggable/draggable_core.js | 6 | ||||
-rw-r--r-- | tests/unit/draggable/draggable_options.js | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/tests/unit/draggable/draggable_core.js b/tests/unit/draggable/draggable_core.js index ab3b36c4e..a01de408f 100644 --- a/tests/unit/draggable/draggable_core.js +++ b/tests/unit/draggable/draggable_core.js @@ -1,11 +1,7 @@ /* - * draggable unit tests + * draggable_core.js */ -// -// Draggable Test Helper Functions -// - var el, offsetBefore, offsetAfter, dragged; var drag = function(handle, dx, dy) { diff --git a/tests/unit/draggable/draggable_options.js b/tests/unit/draggable/draggable_options.js index 7039b3c56..5703c90d4 100644 --- a/tests/unit/draggable/draggable_options.js +++ b/tests/unit/draggable/draggable_options.js @@ -32,7 +32,7 @@ test("{ addClasses: true }, default", function() { test("{ addClasses: false }", function() { el = $("<div></div>").draggable({ addClasses: false }); - ok(!el.is(".ui.draggable"), "'ui-draggable' class not added"); + ok(!el.is(".ui-draggable"), "'ui-draggable' class not added"); }); test("{ appendTo: 'parent' }, default", function() { |