fixed failing test due to case issue

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2270 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald 2009-11-05 19:17:53 +00:00
parent 06e0245b8d
commit 3aa7333ce6
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());