r3211 committed - dialog: fixed dragStop test (was using dragStart instead of dragStop, ...

r3211 committed - dialog: fixed dragStop test (was using dragStart instead of dragStop, ...


Revision: 3211
Author: joern.zaefferer
Date: Mon Sep 14 07:54:15 2009
Log: dialog: fixed dragStop test (was using dragStart instead of dragStop,
copy&paste FTF)
http://code.google.com/p/jquery-ui/source/detail?r=3211
Modified:
/trunk/tests/unit/dialog/dialog_events.js
=======================================
--- /trunk/tests/unit/dialog/dialog_events.js    Fri Jul 10 17:36:36 2009
+++ /trunk/tests/unit/dialog/dialog_events.js    Mon Sep 14 07:54:15 2009
@@ -86,7 +86,7 @@
    expect(7);
    el = $('<div></div>').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');