moved the application context file to correct directory (SPR-3987)

This commit is contained in:
Thomas Risberg 2009-03-12 02:17:49 +00:00
parent 8fdc57ecbd
commit 2855e5c086
2 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class GenericStoredProcedureTests extends AbstractJdbcTests {
super.setUp();
mockCallable = createMock(CallableStatement.class);
bf = new XmlBeanFactory(
new ClassPathResource("org/springframework/jdbc/support/GenericStoredProcedureTests-context.xml"));
new ClassPathResource("org/springframework/jdbc/object/GenericStoredProcedureTests-context.xml"));
TestDataSourceWrapper testDataSource = (TestDataSourceWrapper) bf.getBean("dataSource");
testDataSource.setTarget(mockDataSource);
}