aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/sortable/sortable_tickets.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/sortable/sortable_tickets.js')
-rw-r--r--tests/unit/sortable/sortable_tickets.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/sortable/sortable_tickets.js b/tests/unit/sortable/sortable_tickets.js
index 3edc8c04c..6ee503a58 100644
--- a/tests/unit/sortable/sortable_tickets.js
+++ b/tests/unit/sortable/sortable_tickets.js
@@ -17,7 +17,7 @@ var drag = function(handle, dx, dy) {
var sort = function(handle, dx, dy, index, msg) {
drag(handle, dx, dy);
- equals($(handle).parent().children().index(handle), index, msg);
+ equal($(handle).parent().children().index(handle), index, msg);
}
module("sortable: tickets");
@@ -32,7 +32,7 @@ test("#3019: Stop fires too early", function() {
});
sort($("li", el)[0], 0, 40, 2, 'Dragging the sortable');
- equals(helper, null, "helper should be false");
+ equal(helper, null, "helper should be false");
});