diff --git a/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/MarshallingTransformerParserTests.java b/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/MarshallingTransformerParserTests.java index df23d4ca54..8915e3a6ba 100644 --- a/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/MarshallingTransformerParserTests.java +++ b/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/MarshallingTransformerParserTests.java @@ -47,7 +47,7 @@ public class MarshallingTransformerParserTests { @Before public void setUp() { - this.appContext = new ClassPathXmlApplicationContext("XmlMarshallingTransformerParserTests-context.xml", getClass()); + this.appContext = new ClassPathXmlApplicationContext("MarshallingTransformerParserTests-context.xml", getClass()); this.output = (PollableChannel) appContext.getBean("output"); } diff --git a/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/UnmarshallingTransformerParserTests.java b/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/UnmarshallingTransformerParserTests.java index c7960546aa..1c6734f513 100644 --- a/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/UnmarshallingTransformerParserTests.java +++ b/org.springframework.integration.xml/src/test/java/org/springframework/integration/xml/config/UnmarshallingTransformerParserTests.java @@ -48,7 +48,7 @@ public class UnmarshallingTransformerParserTests { @Before public void setUp() { appContext = new ClassPathXmlApplicationContext( - "XmlUnmarshallingTransformerParserTests-context.xml", this.getClass()); + "UnmarshallingTransformerParserTests-context.xml", this.getClass()); unmarshaller = (StubUnmarshaller) appContext.getBean("unmarshaller"); }