diff options
author | Keith Wood <kbwood.au@gmail.com> | 2009-12-01 01:24:00 +0000 |
---|---|---|
committer | Keith Wood <kbwood.au@gmail.com> | 2009-12-01 01:24:00 +0000 |
commit | fe217c4745fb73516e0835f3c4c195304ad6b43d (patch) | |
tree | d7b982df0c2c157c906d661471d40b66325d0402 /tests/unit/datepicker/datepicker_options.js | |
parent | f07293942f42b7415e232833d2016741799da856 (diff) | |
download | jquery-ui-fe217c4745fb73516e0835f3c4c195304ad6b43d.tar.gz jquery-ui-fe217c4745fb73516e0835f3c4c195304ad6b43d.zip |
Datepicker - Fixed #4787 - Datepicker: fix animation control
Diffstat (limited to 'tests/unit/datepicker/datepicker_options.js')
-rw-r--r-- | tests/unit/datepicker/datepicker_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/datepicker/datepicker_options.js b/tests/unit/datepicker/datepicker_options.js index b66644f0f..8a716144b 100644 --- a/tests/unit/datepicker/datepicker_options.js +++ b/tests/unit/datepicker/datepicker_options.js @@ -46,7 +46,7 @@ test('option', function() { equals(inp.datepicker('option', 'showOn'), 'button', 'Change instance showOn'); inp.datepicker('option', 'showOn', undefined); equals(inp.datepicker('option', 'showOn'), 'focus', 'Reset instance showOn'); - same(inp.datepicker('option', 'all'), {duration: ''}, 'Get instance settings'); + same(inp.datepicker('option', 'all'), {showAnim: ''}, 'Get instance settings'); same(inp.datepicker('option', 'defaults'), $.datepicker._defaults, 'Get default settings'); }); |