diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-04-13 23:10:32 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-13 23:14:14 -0400 |
commit | 149a040794b3b52bc392281fab68aba40c7018ce (patch) | |
tree | b5a78938c02709e0e1b41c3bac3c43ad45449c73 /test | |
parent | 72ddc8c64518a748071fd662b21fc995fbd8e96c (diff) | |
download | jquery-149a040794b3b52bc392281fab68aba40c7018ce.tar.gz jquery-149a040794b3b52bc392281fab68aba40c7018ce.zip |
Fix test suite fail in IE6/7 on event:undelegate - was failing an if where it shouldn't
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/event.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/event.js b/test/unit/event.js index 687184294..1710f6f98 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -2027,11 +2027,11 @@ test("delegate with submit", function() { jQuery(document).undelegate(); }); -test("undelegate() with only namespaces", function(){ +test("undelegate() with only namespaces", function() { expect(2); var $delegate = jQuery("#liveHandlerOrder"), - count = 0; + count = 0; $delegate.delegate("a", "click.ns", function(e) { count++; |