diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java b/uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java index 01d67ae377..3227676e11 100644 --- a/uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java +++ b/uitest/src/com/vaadin/tests/components/orderedlayout/BoxLayoutTest.java @@ -185,7 +185,7 @@ public class BoxLayoutTest extends AbstractTestUI { } }); layout.addComponent(width); - layout.addComponent(new Label("×", ContentMode.XHTML)); + layout.addComponent(new Label("×", ContentMode.HTML)); final NativeSelect height = new NativeSelect(null, sizes); height.setImmediate(true); height.addListener(new ValueChangeListener() { @@ -295,7 +295,7 @@ public class BoxLayoutTest extends AbstractTestUI { } }); component.addComponent(componentWidth); - component.addComponent(new Label("×", ContentMode.XHTML)); + component.addComponent(new Label("×", ContentMode.HTML)); componentHeight = new NativeSelect(null, sizes); componentHeight.setImmediate(true); |