Skip to content

Commit

Permalink
fix test to be false or null, not true
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 committed Sep 11, 2023
1 parent 4bd9b60 commit a9aeecf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3271,7 +3271,7 @@ mod tests {
let output = simplify_with_guarantee(expr.clone(), &guarantees);
assert_eq!(output, lit(false));

// Guaranteed true or null -> no change.
// Guaranteed false or null -> no change.
let guarantees = vec![
(
col("c3"),
Expand All @@ -3283,7 +3283,7 @@ mod tests {
(
col("c4"),
NullableInterval {
values: Interval::make(Some(0_u32), Some(5_u32), (false, false)),
values: Interval::make(Some(9_u32), Some(9_u32), (false, false)),
is_valid: Interval::UNCERTAIN,
},
),
Expand Down

0 comments on commit a9aeecf

Please sign in to comment.