diff options
author | Artur Signell <artur@vaadin.com> | 2013-04-23 17:41:59 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-04-23 15:37:55 +0000 |
commit | 7e5534992951fc61260cdd7159e3cb8cb91a2e79 (patch) | |
tree | 4c4b3f0bf432ecc8c804dfa472d3a4593849301a | |
parent | 5486eb531ad95121c245d86925f7c644678977b6 (diff) | |
download | vaadin-framework-7e5534992951fc61260cdd7159e3cb8cb91a2e79.tar.gz vaadin-framework-7e5534992951fc61260cdd7159e3cb8cb91a2e79.zip |
Updated test as there is no longer a minimum height for a Window
Change-Id: I171ec24350c96a9b662b0407643743bad3793921
-rw-r--r-- | uitest/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.java b/uitest/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.java index efe7eb20bf..42fab79376 100644 --- a/uitest/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.java +++ b/uitest/src/com/vaadin/tests/components/window/CenteredWindowWithUndefinedSize.java @@ -9,7 +9,7 @@ public class CenteredWindowWithUndefinedSize extends TestBase { @Override protected String getDescription() { - return "The centered sub-window with undefined height and a 100% high layout should be rendered in the center of the screen and not in the top-left corner."; + return "The centered sub-window with undefined height and a undefined high layout should be rendered in the center of the screen and not in the top-left corner."; } @Override @@ -23,7 +23,7 @@ public class CenteredWindowWithUndefinedSize extends TestBase { layout.setMargin(true); Window centered = new Window("A window", layout); centered.setSizeUndefined(); - layout.setSizeFull(); + layout.setSizeUndefined(); centered.center(); Label l = new Label("This window should be centered"); |