From d553c3eca98e574d8d6a0b1f2a0276093f53b55e Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 23 Nov 2012 18:59:45 +0200 Subject: Do not build field for Address to avoid conversion problems Change-Id: Ib168032668d6115e955e87cade397a6c9e31a3c3 --- .../com/vaadin/tests/components/uitest/components/FormsCssTest.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java b/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java index e1e306877d..9c8678730e 100644 --- a/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java +++ b/uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java @@ -23,7 +23,9 @@ public class FormsCssTest extends HorizontalLayout { FieldGroup fg = new BeanFieldGroup(Person.class); fg.setItemDataSource(new BeanItem(new Person())); for (Object propId : fg.getUnboundPropertyIds()) { - vl.addComponent(fg.buildAndBind(propId)); + if (!"address".equals(propId)) { + vl.addComponent(fg.buildAndBind(propId)); + } } addComponent(vl); -- cgit v1.2.3