From 46cfa2f147b84e68505ee5e9a4017ade00f8bea4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 28 May 2008 19:35:09 +0000 Subject: [PATCH] accordion tests: Fixed autoHeight tests. --- ui/tests/accordion.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/tests/accordion.js b/ui/tests/accordion.js index 792c104d4..a2b053833 100644 --- a/ui/tests/accordion.js +++ b/ui/tests/accordion.js @@ -14,11 +14,11 @@ test("basics", function() { }); test("autoheight", function() { - $('#navigation').accordion({ header: '.head', autoheight: false }); + $('#navigation').accordion({ header: '.head', autoHeight: false }); equals( 90, $('#navigation ul:first').height() ); equals( 126, $('#navigation ul:eq(1)').height() ); equals( 54, $('#navigation ul:last').height() ); - $('#navigation').accordion("destroy").accordion({ header: '.head',autoheight: true }); + $('#navigation').accordion("destroy").accordion({ header: '.head', autoHeight: true }); equals( 126, $('#navigation ul:first').height() ); equals( 126, $('#navigation ul:eq(1)').height() ); equals( 126, $('#navigation ul:last').height() ); -- 2.39.5