fixed failing test due to case issue

This commit is contained in:
Keith Donald 2009-11-05 19:17:53 +00:00
parent b6ec4e30d9
commit fed96f85ae
1 changed files with 1 additions and 1 deletions

View File

@ -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());