fixed getBean signature ambiguity in tests

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2165 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller
2009-10-20 20:14:49 +00:00
parent 0a9a69b6c9
commit 1edefe991a
3 changed files with 19 additions and 3 deletions
@@ -55,7 +55,7 @@ public abstract class AbstractBeanFactoryTests extends TestCase {
public void testGetBeanWithNullArg() {
try {
getBeanFactory().getBean(null);
getBeanFactory().getBean((String) null);
fail("Can't get null bean");
}
catch (IllegalArgumentException ex) {