X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fxmlrouter%2Fimpl%2FRobustDocumentTypeTest.java;h=aa724e26f3d10ca0f46fb3f976ad410ea0a470cf;hb=ca624324bf36e5ba8217a6af861cbf898a40adfc;hp=57289dcb5a68b736f6ff7745b4ae5c6334b5bf99;hpb=b2375f35a2f897e1417e8b5ec5b19b3257a11586;p=xmlrouter diff --git a/impl/src/test/java/org/wamblee/xmlrouter/impl/RobustDocumentTypeTest.java b/impl/src/test/java/org/wamblee/xmlrouter/impl/RobustDocumentTypeTest.java index 57289dc..aa724e2 100644 --- a/impl/src/test/java/org/wamblee/xmlrouter/impl/RobustDocumentTypeTest.java +++ b/impl/src/test/java/org/wamblee/xmlrouter/impl/RobustDocumentTypeTest.java @@ -23,7 +23,6 @@ import javax.xml.transform.dom.DOMSource; import org.junit.Before; import org.junit.Test; -import org.wamblee.xmlrouter.common.Id; import org.wamblee.xmlrouter.config.DocumentType; public class RobustDocumentTypeTest { @@ -35,7 +34,7 @@ public class RobustDocumentTypeTest { @Before public void setUp() { documentType = mock(DocumentType.class); - robust = new RobustDocumentType(new Id(10), documentType); + robust = new RobustDocumentType("app1", documentType); source = mock(DOMSource.class); }