mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fixed usage of wrong TestBean package.
This commit is contained in:
+1
-1
@@ -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;
|
||||
|
||||
|
||||
+2
-2
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user