diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-21 10:04:40 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-21 10:04:40 +0000 |
commit | 63f11cd243f78d1a40f06637f93b82de29b1a4dc (patch) | |
tree | 34932e2883f41b1b9c1f3cac0cdd6f2a570744c1 /tests/sortable.js | |
parent | 77c5305b2ec7d627f40acb96decc229b74428094 (diff) | |
download | jquery-ui-63f11cd243f78d1a40f06637f93b82de29b1a4dc.tar.gz jquery-ui-63f11cd243f78d1a40f06637f93b82de29b1a4dc.zip |
tests sortable - fixed failing enable test
Diffstat (limited to 'tests/sortable.js')
-rw-r--r-- | tests/sortable.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sortable.js b/tests/sortable.js index acfd8d9df..7cde74c04 100644 --- a/tests/sortable.js +++ b/tests/sortable.js @@ -76,7 +76,7 @@ test("enable", function() { expect(4);
el = $("#sortable").sortable({ disabled: true });
- sort($("li", el)[0], 0, 50, 0, '.sortable({ disabled: true })');
+ sort($("li", el)[0], 0, 40, 0, '.sortable({ disabled: true })');
el.sortable("enable");
equals(el.data("disabled.sortable"), false, "disabled.sortable getter");
@@ -86,7 +86,7 @@ test("enable", function() { el.data("disabled.sortable", false);
equals(el.data("disabled.sortable"), false, "disabled.sortable setter");
- sort($("li", el)[0], 0, 20, 2, '.data("disabled.sortable", false)');
+ sort($("li", el)[0], 0, 40, 2, '.data("disabled.sortable", false)');
});
test("disable", function() {
|