diff options
Diffstat (limited to 'tests/unit/selectable/selectable_events.js')
-rw-r--r-- | tests/unit/selectable/selectable_events.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/selectable/selectable_events.js b/tests/unit/selectable/selectable_events.js index 03b65ab88..2623818a7 100644 --- a/tests/unit/selectable/selectable_events.js +++ b/tests/unit/selectable/selectable_events.js @@ -11,7 +11,7 @@ test("start", function() { el.selectable({ start: function(ev, ui) { ok(true, "drag fired start callback"); - equals(this, el[0], "context of callback"); + equal(this, el[0], "context of callback"); } }); el.simulate("drag", 20, 20); @@ -23,7 +23,7 @@ test("stop", function() { el.selectable({ start: function(ev, ui) { ok(true, "drag fired stop callback"); - equals(this, el[0], "context of callback"); + equal(this, el[0], "context of callback"); } }); el.simulate("drag", 20, 20); |