Skip to content

Commit

Permalink
API: Fix TestStrictMetricsEvaluator assertion message (apache#9992)
Browse files Browse the repository at this point in the history
All values (`5` and `6`) are not between the upper and lower bound of `[30, 79]`.
  • Loading branch information
Fokko authored Mar 18, 2024
1 parent 7a6143a commit f614a3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ public void testIntegerNotIn() {
boolean shouldRead =
new StrictMetricsEvaluator(SCHEMA, notIn("id", INT_MIN_VALUE - 25, INT_MIN_VALUE - 24))
.eval(FILE);
assertThat(shouldRead).as("Should not match: all values !=5 and !=6").isTrue();
assertThat(shouldRead).as("Should match: all values !=5 and !=6").isTrue();

shouldRead =
new StrictMetricsEvaluator(SCHEMA, notIn("id", INT_MIN_VALUE - 1, INT_MIN_VALUE))
Expand Down

0 comments on commit f614a3f

Please sign in to comment.