diff options
author | Felix Nagel <info@felixnagel.com> | 2013-04-29 21:03:12 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2013-04-29 21:07:59 +0200 |
commit | 0d7b25d94696f28e848c75555b1a352b67fa22de (patch) | |
tree | 26ab051098c392c97e8e380e34de099f0eee18c4 /tests/unit/selectmenu/selectmenu_methods.js | |
parent | 1cca8292e8678645a3e5af54bd3f761fd72ff02e (diff) | |
download | jquery-ui-0d7b25d94696f28e848c75555b1a352b67fa22de.tar.gz jquery-ui-0d7b25d94696f28e848c75555b1a352b67fa22de.zip |
Selectmenu Tests: clean up spacing and intention
Diffstat (limited to 'tests/unit/selectmenu/selectmenu_methods.js')
-rw-r--r-- | tests/unit/selectmenu/selectmenu_methods.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/selectmenu/selectmenu_methods.js b/tests/unit/selectmenu/selectmenu_methods.js index 99692f53d..b7e717bbc 100644 --- a/tests/unit/selectmenu/selectmenu_methods.js +++ b/tests/unit/selectmenu/selectmenu_methods.js @@ -123,14 +123,13 @@ test( "refresh - disabled option", function () { test( "refresh - disabled optgroup", function () { - var i, - item, + var i, item, element = $( "#files" ).selectmenu(), menu = element.selectmenu( "menuWidget" ).parent(), originalDisabledOptgroup = element.find( "optgroup" ).first(), originalDisabledOptions = originalDisabledOptgroup.find( "option" ); - expect(2 + originalDisabledOptions.length); + expect( 2 + originalDisabledOptions.length ); originalDisabledOptgroup.attr( "disabled", "disabled" ); element.selectmenu( "refresh" ); |