fixed failing test due to case issue

master
Keith Donald 15 years ago
parent b6ec4e30d9
commit fed96f85ae
  1. 2
      org.springframework.context/src/test/java/org/springframework/context/conversionservice/ConversionServiceContextConfigTests.java

@ -10,7 +10,7 @@ public class ConversionServiceContextConfigTests {
@Test @Test
public void testConfigOk() { 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); TestClient client = context.getBean("testClient", TestClient.class);
assertEquals(2, client.getBars().size()); assertEquals(2, client.getBars().size());
assertEquals("value1", client.getBars().get(0).getValue()); assertEquals("value1", client.getBars().get(0).getValue());

Loading…
Cancel
Save