diff options
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(); |