aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/accordion
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-01-14 12:18:33 -0500
committerScott González <scott.gonzalez@gmail.com>2011-01-14 12:18:33 -0500
commit1b2f6ce0955f2a08a2e52c688f23335423179cf1 (patch)
treece16fd578acbb8137fe589d69b7d617aea3782d8 /tests/unit/accordion
parenteabb391e471bea66050a2e87f27df201842eb3a1 (diff)
downloadjquery-ui-1b2f6ce0955f2a08a2e52c688f23335423179cf1.tar.gz
jquery-ui-1b2f6ce0955f2a08a2e52c688f23335423179cf1.zip
Accordion: Renamed resize method to refresh. Fixes #6838 - Accordion: Rename resize method to refresh.
Diffstat (limited to 'tests/unit/accordion')
-rw-r--r--tests/unit/accordion/accordion_methods.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/accordion/accordion_methods.js b/tests/unit/accordion/accordion_methods.js
index e46dba30a..c801851d0 100644
--- a/tests/unit/accordion/accordion_methods.js
+++ b/tests/unit/accordion/accordion_methods.js
@@ -114,14 +114,14 @@ test("activate, jQuery or DOM element", function() {
state(ac, 0, 1, 0);
});
-test("resize", function() {
+test("refresh", function() {
var expected = $('#navigation').parent().height(300).end().accordion({
fillSpace: true
});
equalHeights(expected, 246, 258);
expected.parent().height(500);
- expected.accordion("resize");
+ expected.accordion("refresh");
equalHeights(expected, 446, 458);
});