Skip to content

Commit

Permalink
Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
smalyshev committed Sep 11, 2024
1 parent f3768f0 commit 874139f
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,16 @@ private void doTestIsFieldWithinQuery(DateFieldType ft, DirectoryReader reader,
);
assertThrows(
IllegalArgumentException.class,
() -> ft.isFieldWithinQuery(reader, "9223372036854775807", "2016-04-01", randomBoolean(), randomBoolean(), zone, null, context)
() -> ft.isFieldWithinQuery(
reader,
"9223372036854775807",
"2016-04-01",
randomBoolean(),
randomBoolean(),
zone,
null,
context
)
);
}
}
Expand Down

0 comments on commit 874139f

Please sign in to comment.