Fixed usage of wrong TestBean package.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@577 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Arjen Poutsma 2009-01-23 11:57:58 +00:00
parent c28ee3cdf9
commit b62e6238d1
2 changed files with 3 additions and 3 deletions

View File

@ -18,8 +18,8 @@ package org.springframework.beans.factory.xml;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import test.beans.ITestBean;
import org.springframework.beans.ITestBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

View File

@ -4,8 +4,8 @@
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="foo" class="test.beans.TestBean" p:name="Baz"/>
<bean id="foo" class="org.springframework.beans.TestBean" p:name="Baz"/>
<bean id="bar" class="test.beans.TestBean" p:name="#{foo.name}"/>
<bean id="bar" class="org.springframework.beans.TestBean" p:name="#{foo.name}"/>
</beans>