diff options
author | Anton M <haskell_noob-github@yahoo.de> | 2010-10-19 11:14:07 +0200 |
---|---|---|
committer | Anton M <haskell_noob-github@yahoo.de> | 2010-10-19 11:14:07 +0200 |
commit | 4fcfee4369d184d26ef819c34412fb8d9b09962c (patch) | |
tree | c5d2a58d54da427fcfb307902b65b9f45f4ab661 /test | |
parent | 008e971943b0ce55333a65caea7f64eb82b985ac (diff) | |
download | jquery-4fcfee4369d184d26ef819c34412fb8d9b09962c.tar.gz jquery-4fcfee4369d184d26ef819c34412fb8d9b09962c.zip |
Update number of expected assertions in attribute tests
Followup to commit 97dfa0d5a85a32fe56aba837bbf2bc889b092d2b which
had the side effect to break some attribute unit tests
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/attributes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/attributes.js b/test/unit/attributes.js index c6007aacc..10f7b190f 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -512,7 +512,7 @@ test("addClass(Function)", function() { }); test("addClass(Function) with incoming value", function() { - expect(41); + expect(45); var div = jQuery("div"), old = div.map(function(){ return jQuery(this).attr("class"); @@ -585,7 +585,7 @@ test("removeClass(Function) - simple", function() { }); test("removeClass(Function) with incoming value", function() { - expect(41); + expect(45); var $divs = jQuery('div').addClass("test"), old = $divs.map(function(){ return jQuery(this).attr("class"); |