Merge branch '6.2.x'

This commit is contained in:
Sam Brannen
2025-03-19 16:24:18 +01:00
97 changed files with 378 additions and 402 deletions

View File

@@ -737,8 +737,8 @@ class SpelDocumentationTests extends AbstractExpressionTests {
parser.parseExpression("Name").setValue(societyContext, "IEEE");
societyContext.setVariable("queryName", "Nikola Tesla");
String expression = "isMember(#queryName) ? #queryName + ' is a member of the ' "
+ "+ Name + ' Society' : #queryName + ' is not a member of the ' + Name + ' Society'";
String expression = "isMember(#queryName) ? #queryName + ' is a member of the ' " +
"+ Name + ' Society' : #queryName + ' is not a member of the ' + Name + ' Society'";
String queryResultString = parser.parseExpression(expression).getValue(societyContext, String.class);
assertThat(queryResultString).isEqualTo("Nikola Tesla is a member of the IEEE Society");