diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-09-15 15:09:41 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2009-09-15 15:09:41 +0000 |
commit | ee28074bb038d357ea28bbc36e40ac6686380d3f (patch) | |
tree | 22c9589ab47a823bde21c12fb2f4418827ba6f0c /tests | |
parent | 7140ec36a851004b2d24155dc2e2b35aab89ed4d (diff) | |
download | jquery-ui-ee28074bb038d357ea28bbc36e40ac6686380d3f.tar.gz jquery-ui-ee28074bb038d357ea28bbc36e40ac6686380d3f.zip |
accordion: icon test fix, was failing in webkits
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/accordion/accordion_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/accordion/accordion_options.js b/tests/unit/accordion/accordion_options.js index 35e87d432..b77cb787e 100644 --- a/tests/unit/accordion/accordion_options.js +++ b/tests/unit/accordion/accordion_options.js @@ -128,7 +128,7 @@ test("{ header: '> li > :first-child,> :not(li):even' }, default", function() { test("{ icons: false }", function() { function icons(on) { - same($("#list1 span.ui-icon:visible").length, on ? 3 : 0); + same($("#list1 span.ui-icon").length, on ? 3 : 0); same( $("#list1").hasClass("ui-accordion-icons"), on ); } $("#list1").accordion(); |