diff options
author | John Ahlroos <john@vaadin.com> | 2012-09-07 10:32:05 +0300 |
---|---|---|
committer | John Ahlroos <john@vaadin.com> | 2012-09-07 10:32:05 +0300 |
commit | 52fa9639bab979d13e852e42f6aba6fe60b4ffe4 (patch) | |
tree | aaf4486eae2df058d609da7391bdf788fdf32614 /uitest/src/com/vaadin/tests/application | |
parent | 074b1095ee302af67626055820853ed1b8a4ea86 (diff) | |
download | vaadin-framework-52fa9639bab979d13e852e42f6aba6fe60b4ffe4.tar.gz vaadin-framework-52fa9639bab979d13e852e42f6aba6fe60b4ffe4.zip |
Removed deprecated ContenMode.XHTML
Diffstat (limited to 'uitest/src/com/vaadin/tests/application')
-rw-r--r-- | uitest/src/com/vaadin/tests/application/ApplicationCloseTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/application/ApplicationCloseTest.java b/uitest/src/com/vaadin/tests/application/ApplicationCloseTest.java index 8cfed569dc..e4f8552af1 100644 --- a/uitest/src/com/vaadin/tests/application/ApplicationCloseTest.java +++ b/uitest/src/com/vaadin/tests/application/ApplicationCloseTest.java @@ -13,7 +13,7 @@ public class ApplicationCloseTest extends TestBase { @Override protected void setup() { Label applications = new Label("Applications in session: <br/>", - ContentMode.XHTML); + ContentMode.HTML); if (getContext() != null) { applications.setValue(applications.getValue() + "App: " + getContext() + "<br/>"); @@ -49,7 +49,7 @@ public class ApplicationCloseTest extends TestBase { / 1000 / 1000 + "MiB memory for this application.<br/>Total memory usage reported as " - + totalUsageString + "<br/>", ContentMode.XHTML); + + totalUsageString + "<br/>", ContentMode.HTML); addComponent(thisApp); addComponent(memoryUsage); |