diff options
-rw-r--r-- | uitest/src/com/vaadin/tests/components/uitest/components/FormsCssTest.java | 4 |
1 files changed, 3 insertions, 1 deletions
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>(Person.class); fg.setItemDataSource(new BeanItem<Person>(new Person())); for (Object propId : fg.getUnboundPropertyIds()) { - vl.addComponent(fg.buildAndBind(propId)); + if (!"address".equals(propId)) { + vl.addComponent(fg.buildAndBind(propId)); + } } addComponent(vl); |