diff options
Diffstat (limited to 'server/src/test/java/com/vaadin/tests/design/LocaleTest.java')
-rw-r--r-- | server/src/test/java/com/vaadin/tests/design/LocaleTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/test/java/com/vaadin/tests/design/LocaleTest.java b/server/src/test/java/com/vaadin/tests/design/LocaleTest.java index ab04cbc727..98eeb342bf 100644 --- a/server/src/test/java/com/vaadin/tests/design/LocaleTest.java +++ b/server/src/test/java/com/vaadin/tests/design/LocaleTest.java @@ -97,7 +97,7 @@ public class LocaleTest { private Document componentToDoc(DesignContext dc) { // Create the html tree skeleton. Document doc = new Document(""); - DocumentType docType = new DocumentType("html", "", "", ""); + DocumentType docType = new DocumentType("html", "", ""); doc.appendChild(docType); Element html = doc.createElement("html"); doc.appendChild(html); @@ -124,7 +124,7 @@ public class LocaleTest { public void testParsing() { // create an html document Document doc = new Document(""); - DocumentType docType = new DocumentType("html", "", "", ""); + DocumentType docType = new DocumentType("html", "", ""); doc.appendChild(docType); Element html = doc.createElement("html"); doc.appendChild(html); |