Skip to content

Commit 9c777fc

Browse files
committed
fixing checkstyle errors on HighlightExpressionTest
Signed-off-by: forestmvey <[email protected]>
1 parent 2feb2c4 commit 9c777fc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

core/src/test/java/org/opensearch/sql/expression/HighlightExpressionTest.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,12 @@ public void highlight_all_test() {
4040
builder.put("_highlight", ExprTupleValue.fromExprValueMap(hlBuilder.build()));
4141

4242
HighlightExpression expr = new HighlightExpression(DSL.literal("*"));
43-
ExprValue resultVal = expr.valueOf(ExprTupleValue.fromExprValueMap(builder.build()).bindingTuples());
43+
ExprValue resultVal = expr.valueOf(
44+
ExprTupleValue.fromExprValueMap(builder.build()).bindingTuples());
4445
assertEquals(STRUCT, resultVal.type());
45-
assertTrue(resultVal.tupleValue().containsValue(ExprValueUtils.stringValue("\"correct result value\"")));
46-
assertTrue(resultVal.tupleValue().containsValue(ExprValueUtils.stringValue("\"correct result value\"")));
46+
assertTrue(resultVal.tupleValue().containsValue(
47+
ExprValueUtils.stringValue("\"correct result value\"")));
48+
assertTrue(resultVal.tupleValue().containsValue(
49+
ExprValueUtils.stringValue("\"correct result value\"")));
4750
}
4851
}

0 commit comments

Comments
 (0)