diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-02-28 15:56:32 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-02-29 18:36:40 +0100 |
commit | 72023dd045a7fead5a3136ec2400ad4743a190d2 (patch) | |
tree | 4999a287a815e6a4200498a2a0241abc349fe599 /tests/unit/selectable/selectable_events.js | |
parent | e6b7486abf2e0f98837e76027084fad6fe908cff (diff) | |
download | jquery-ui-72023dd045a7fead5a3136ec2400ad4743a190d2.tar.gz jquery-ui-72023dd045a7fead5a3136ec2400ad4743a190d2.zip |
Update to QUnit 1.3. Replace usage of same with deepEqual and equals with equal.
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); |