aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/sortable
diff options
context:
space:
mode:
authorAndrei Picus <office.nightcrawler@gmail.com>2014-01-14 09:36:16 +0200
committerScott González <scott.gonzalez@gmail.com>2014-01-15 04:10:10 -0500
commit23c7d367b12fd629754b680bbef84e564652e21a (patch)
treebc5f9daed6a063f66eb93a7a2134b39572d7a130 /tests/unit/sortable
parent0b28d597fe1857590c9719c8b41f00e77967f7d7 (diff)
downloadjquery-ui-23c7d367b12fd629754b680bbef84e564652e21a.tar.gz
jquery-ui-23c7d367b12fd629754b680bbef84e564652e21a.zip
Sortable: Cleanup
Closes gh-1168 Closes gh-1169
Diffstat (limited to 'tests/unit/sortable')
-rw-r--r--tests/unit/sortable/sortable_events.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/sortable/sortable_events.js b/tests/unit/sortable/sortable_events.js
index 46a493b3e..2d745ac20 100644
--- a/tests/unit/sortable/sortable_events.js
+++ b/tests/unit/sortable/sortable_events.js
@@ -249,12 +249,12 @@ test( "over", function() {
});
ok( hash, "stop event triggered" );
- ok( hash.helper, "UI should not include: helper" );
+ ok( hash.helper, "UI includes: helper" );
ok( hash.placeholder, "UI hash includes: placeholder" );
ok( hash.position && ( "top" in hash.position && "left" in hash.position ), "UI hash includes: position" );
ok( hash.offset && ( hash.offset.top && hash.offset.left ), "UI hash includes: offset" );
ok( hash.item, "UI hash includes: item" );
- ok( hash.sender, "UI hash does not include: sender" );
+ ok( hash.sender, "UI hash includes: sender" );
equal( overCount, 1, "over fires only once" );
});