Skip to content

Commit

Permalink
Fixup test for incomparable fields
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker committed Dec 7, 2024
1 parent ce155ac commit 2c14126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oximeter/db/src/oxql/plan/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ mod tests {
"Should fail to plan query with an incomparable filter",
);
assert!(
err.to_string().contains("is not compatible with the field"),
err.to_string().contains("is not compatible with the expected type"),
"Error message should complain that a filter cannot compare \
a field against an incompatible type, but the error message is: {:#?}",
err,
Expand Down

0 comments on commit 2c14126

Please sign in to comment.