From 3aa7333ce6ec51334ca0c5dec5b5c5c85ce0e5ac Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 5 Nov 2009 19:17:53 +0000 Subject: [PATCH] fixed failing test due to case issue git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2270 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../conversionservice/ConversionServiceContextConfigTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8566f543be4..94e3f690724 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());