aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2010-10-12 20:56:46 -0400
committerJohn Resig <jeresig@gmail.com>2010-10-12 20:56:46 -0400
commit783bb2a85fe33d00e82f40c8dab484e1cf0c63a1 (patch)
tree0cc4642cb4eb19951616cd5202ca8abc45b49919 /test/unit
parent9ced9f288ca53594a56487ccdd45bae1f5ec80e0 (diff)
downloadjquery-783bb2a85fe33d00e82f40c8dab484e1cf0c63a1.tar.gz
jquery-783bb2a85fe33d00e82f40c8dab484e1cf0c63a1.zip
Fix some gaps in the handling of event data properties. Thanks to @jitter in ff6ceadbfd470463e63708413eb5a55bd7e90c69 for the catches.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index b37b253a8..6f753225d 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -1838,7 +1838,7 @@ test("window resize", function() {
ok( true, "Resize event fired." );
}).resize().unbind("resize");
- ok( !jQuery(window).data("events"), "Make sure all the events are gone." );
+ ok( !jQuery(window).data("__events__"), "Make sure all the events are gone." );
});
/*