removed the prefix argument from ConfigImpl.wrap().
[xmlrouter] / impl / src / test / java / org / wamblee / xmlrouter / impl / RobustTransformationTest.java
index 5e73d6fe239ab0557f12c9d701a63e1ae958433d..f7b4ec6a88a4545a535ef995fc693747062d4492 100644 (file)
@@ -36,7 +36,7 @@ public class RobustTransformationTest {
     public void setUp() {
         transformation = mock(Transformation.class);
         when(transformation.getId()).thenReturn(new Id<Transformation>("t1"));
-        robust = new RobustTransformation("transformation", transformation);
+        robust = new RobustTransformation(transformation);
         source = mock(DOMSource.class);
         resSource = mock(DOMSource.class);
     }