aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable/selectable_events.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/selectable/selectable_events.js')
-rw-r--r--tests/unit/selectable/selectable_events.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/selectable/selectable_events.js b/tests/unit/selectable/selectable_events.js
index 2623818a7..bfd431bd8 100644
--- a/tests/unit/selectable/selectable_events.js
+++ b/tests/unit/selectable/selectable_events.js
@@ -9,7 +9,7 @@ test("start", function() {
expect(2);
el = $("#selectable1");
el.selectable({
- start: function(ev, ui) {
+ start: function() {
ok(true, "drag fired start callback");
equal(this, el[0], "context of callback");
}
@@ -21,7 +21,7 @@ test("stop", function() {
expect(2);
el = $("#selectable1");
el.selectable({
- start: function(ev, ui) {
+ start: function() {
ok(true, "drag fired stop callback");
equal(this, el[0], "context of callback");
}