Removed comments from test

This commit is contained in:
Johan Rask 2010-06-21 21:14:09 +02:00
parent d78ee8db78
commit 15e2f8616f

View file

@ -65,12 +65,10 @@ class ActiveObjectFactoryBeanTest extends Spec with ShouldMatchers {
assert(target.getSource === entry.value) assert(target.getSource === entry.value)
} }
/*
it("should create an application context and inject a string dependency") { it("should create an application context and inject a string dependency") {
var ctx = new ClassPathXmlApplicationContext("appContext.xml"); var ctx = new ClassPathXmlApplicationContext("appContext.xml");
val target:ResourceEditor = ctx.getBean("bean").asInstanceOf[ResourceEditor] val target:ResourceEditor = ctx.getBean("bean").asInstanceOf[ResourceEditor]
assert(target.getSource === "someString") assert(target.getSource === "someString")
} }
*/
} }
} }