aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/dialog_options.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2011-05-02 13:12:36 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2011-05-02 13:12:36 +0200
commitd8e60e9a8a6898ea3dfc710c554d9bfe13b0f77e (patch)
tree5bb960da36a12d73cbdfb21ec6d3dd51a6b65ab5 /tests/unit/dialog/dialog_options.js
parenta03c222f05aa2364189d264377e0a19da4d4c9ad (diff)
parent0c674ca7e35b84bc2c34ce47acd83dc7441bea35 (diff)
downloadjquery-ui-d8e60e9a8a6898ea3dfc710c554d9bfe13b0f77e.tar.gz
jquery-ui-d8e60e9a8a6898ea3dfc710c554d9bfe13b0f77e.zip
Merge branch 'master' into tooltip-animations
Diffstat (limited to 'tests/unit/dialog/dialog_options.js')
-rw-r--r--tests/unit/dialog/dialog_options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/dialog/dialog_options.js b/tests/unit/dialog/dialog_options.js
index fb8dea775..5705da079 100644
--- a/tests/unit/dialog/dialog_options.js
+++ b/tests/unit/dialog/dialog_options.js
@@ -180,7 +180,7 @@ test("height", function() {
expect(3);
el = $('<div></div>').dialog();
- equals(dlg().height(), dialog_defaults.minHeight, "default height");
+ equals(dlg().height(), 150, "default height");
el.remove();
el = $('<div></div>').dialog({ height: 237 });
@@ -431,7 +431,7 @@ test("width", function() {
expect(3);
el = $('<div></div>').dialog();
- equals(dlg().width(), dialog_defaults.width, "default width");
+ equals(dlg().width(), 300, "default width");
el.remove();
el = $('<div></div>').dialog({width: 437 });