Fixed fragile tests for @Bean method overloading

This commit is contained in:
Juergen Hoeller
2014-08-15 00:55:14 +02:00
parent 69587f3fa4
commit d2e269e697

View File

@@ -250,7 +250,7 @@ public class BeanMethodPolymorphismTests {
return "regular";
}
@Bean
@Bean @Lazy
String aString(Integer dependency) {
return "overloaded" + dependency;
}