SpEL property-not-found message hints at non-public method/field

Issue: SPR-11535
This commit is contained in:
Juergen Hoeller
2014-03-11 10:47:53 +01:00
parent d317b637e0
commit eeb82c409a
3 changed files with 18 additions and 15 deletions

View File

@@ -1783,7 +1783,7 @@ public class SpelReproTests extends ExpressionTestCase {
SPR11142 rootObject = new SPR11142();
Expression expression = parser.parseExpression("something");
thrown.expect(SpelEvaluationException.class);
thrown.expectMessage("property 'something' cannot be found");
thrown.expectMessage("'something' cannot be found");
expression.getValue(context, rootObject);
}