Skip to content

Commit

Permalink
Fix spotless
Browse files Browse the repository at this point in the history
Signed-off-by: currantw <[email protected]>
  • Loading branch information
currantw committed Dec 18, 2024
1 parent 774861b commit a2ec8cf
Showing 1 changed file with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -712,10 +712,7 @@ public void testTrendlineSort() {
"source=t | trendline sort test_field sma(5, test_field)",
trendline(
relation("t"),
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(true)))),
Optional.of(field("test_field", argument("asc", booleanLiteral(true)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand All @@ -725,10 +722,7 @@ public void testTrendlineSortDesc() {
"source=t | trendline sort - test_field sma(5, test_field)",
trendline(
relation("t"),
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(false)))),
Optional.of(field("test_field", argument("asc", booleanLiteral(false)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand All @@ -738,10 +732,7 @@ public void testTrendlineSortAsc() {
"source=t | trendline sort + test_field sma(5, test_field)",
trendline(
relation("t"),
Optional.of(
field(
"test_field",
argument("asc", booleanLiteral(true)))),
Optional.of(field("test_field", argument("asc", booleanLiteral(true)))),
computation(5, field("test_field"), "test_field_trendline", SMA)));
}

Expand Down

0 comments on commit a2ec8cf

Please sign in to comment.