From: Joonas Lehtinen Date: Fri, 11 Jul 2008 14:20:08 +0000 (+0000) Subject: Fixes a bug in test for #1934 X-Git-Tag: 6.7.0.beta1~4433 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6cfae4c7c0c2a0fb5a675ef2c6c7e075df988552;p=vaadin-framework.git Fixes a bug in test for #1934 svn changeset:5094/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/tests/tickets/Ticket1934.java b/src/com/itmill/toolkit/tests/tickets/Ticket1934.java index 0bd48d4116..8d2b8cbd9d 100644 --- a/src/com/itmill/toolkit/tests/tickets/Ticket1934.java +++ b/src/com/itmill/toolkit/tests/tickets/Ticket1934.java @@ -17,8 +17,8 @@ public class Ticket1934 extends Application { ExpandLayout testedLayout = new ExpandLayout( ExpandLayout.ORIENTATION_HORIZONTAL); - testedLayout.setWidth(500); - testedLayout.setHeight(200); + testedLayout.setWidth("500px"); + testedLayout.setHeight("200px"); Button b1 = new Button("b1"); testedLayout.addComponent(b1);