removed the prefix argument from ConfigImpl.wrap().
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / RobustDocumentTypeTest.java
index 2c295b59623fd071cb3fe0627eaa67a5af106d30..8db9ff25fe2d855381c4e9c258dd6ada67c728b9 100644 (file)
@@ -36,7 +36,7 @@ public class RobustDocumentTypeTest {
     public void setUp() {
         documentType = mock(DocumentType.class);
         when(documentType.getId()).thenReturn(new Id<DocumentType>("docid"));
-        robust = new RobustDocumentType("app1", documentType);
+        robust = new RobustDocumentType(documentType);
         source = mock(DOMSource.class);
     }