Expression javadoc alignment

(cherry picked from commit 1ad6180)
This commit is contained in:
Juergen Hoeller
2017-07-14 16:46:22 +02:00
parent bb6d9fabee
commit 1513c4a952
3 changed files with 75 additions and 54 deletions

View File

@@ -3274,8 +3274,8 @@ public class SpelCompilationCoverageTests extends AbstractExpressionTests {
ex = parser.parseRaw("#it?.age.equals([0])");
context = new StandardEvaluationContext(new Object[] {person2.getAge()});
context.setVariable("it", person2);
assertTrue((Boolean)ex.getValue(context));
assertTrue((Boolean)ex.getValue(context));
assertTrue((Boolean) ex.getValue(context));
assertTrue((Boolean) ex.getValue(context));
}
@Test