diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-30 03:00:38 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-30 03:00:38 +0000 |
commit | 633ceff19057f09973b10ca850c2a8b3a5bdc6dd (patch) | |
tree | 28925698985c5ce6eab97b70502fdd5c01d295a4 | |
parent | 2c1d4675a8e5424861db3d797e5fa38760c0a872 (diff) | |
download | jquery-ui-633ceff19057f09973b10ca850c2a8b3a5bdc6dd.tar.gz jquery-ui-633ceff19057f09973b10ca850c2a8b3a5bdc6dd.zip |
accordion unit tests: fixed cap. of autoHeight
-rw-r--r-- | tests/unit/accordion/accordion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/accordion/accordion.js b/tests/unit/accordion/accordion.js index e39469827..44f89100d 100644 --- a/tests/unit/accordion/accordion.js +++ b/tests/unit/accordion/accordion.js @@ -22,7 +22,7 @@ test("basics", function() { state($('#list1').accordion(), 1, 0, 0); }); -test("autoheight", function() { +test("autoHeight", function() { $('#navigation').accordion({ autoHeight: false }); equals( 90, $('#navigation div:first').height() ); equals( 126, $('#navigation div:eq(1)').height() ); |