From 219c81a20800ba9dc7b6515299d2ad2fba626d8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Mon, 14 Sep 2009 14:54:15 +0000 Subject: [PATCH] dialog: fixed dragStop test (was using dragStart instead of dragStop, copy&paste FTF) --- tests/unit/dialog/dialog_events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/dialog/dialog_events.js b/tests/unit/dialog/dialog_events.js index 70bf434b7..c60e47f22 100644 --- a/tests/unit/dialog/dialog_events.js +++ b/tests/unit/dialog/dialog_events.js @@ -86,7 +86,7 @@ test("dragStop", function() { expect(7); el = $('
').dialog({ - dragStart: function(ev, ui) { + dragStop: function(ev, ui) { ok(true, 'dragging fires dragStop callback'); equals(this, el[0], "context of callback"); equals(ev.type, 'dialogdragstop', 'event type in callback'); -- 2.39.5