diff --git a/org.springframework.context/src/test/java/org/springframework/context/conversionservice/ConversionServiceContextConfigTests.java b/org.springframework.context/src/test/java/org/springframework/context/conversionservice/ConversionServiceContextConfigTests.java index 8566f543be..94e3f69072 100644 --- a/org.springframework.context/src/test/java/org/springframework/context/conversionservice/ConversionServiceContextConfigTests.java +++ b/org.springframework.context/src/test/java/org/springframework/context/conversionservice/ConversionServiceContextConfigTests.java @@ -10,7 +10,7 @@ public class ConversionServiceContextConfigTests { @Test public void testConfigOk() { - ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("org/springframework/context/conversionservice/conversionservice.xml"); + ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("org/springframework/context/conversionservice/conversionService.xml"); TestClient client = context.getBean("testClient", TestClient.class); assertEquals(2, client.getBars().size()); assertEquals("value1", client.getBars().get(0).getValue());