Skip to content

Commit

Permalink
Fix test failure due to merge.
Browse files Browse the repository at this point in the history
Signed-off-by: currantw <[email protected]>
  • Loading branch information
currantw committed Dec 13, 2024
1 parent b45114a commit c166cdf
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -715,8 +715,7 @@ public void testTrendlineSort() {
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(true)),
argument("type", nullLiteral()))),
argument("asc", booleanLiteral(true)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand All @@ -729,8 +728,7 @@ public void testTrendlineSortDesc() {
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(false)),
argument("type", nullLiteral()))),
argument("asc", booleanLiteral(false)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand All @@ -743,8 +741,7 @@ public void testTrendlineSortAsc() {
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(true)),
argument("type", nullLiteral()))),
argument("asc", booleanLiteral(true)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand Down

0 comments on commit c166cdf

Please sign in to comment.