Skip to content

Commit

Permalink
Remove redundant asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Dec 4, 2024
1 parent 8b050f2 commit e1d66ac
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions datafusion/core/tests/dataframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2069,7 +2069,6 @@ async fn test_dataframe_placeholder_column_parameter() -> Result<()> {
// so the filter data type is not know, i.e. a = $0.
// Therefore, the optimization fails.
let optimized_plan = ctx.state().optimize(logical_plan);
assert!(optimized_plan.is_err());
assert!(optimized_plan
.unwrap_err()
.to_string()
Expand Down Expand Up @@ -2139,7 +2138,6 @@ async fn test_dataframe_placeholder_like_expression() -> Result<()> {
// so the filter data type is not know, i.e. a = $0.
// Therefore, the optimization fails.
let optimized_plan = ctx.state().optimize(logical_plan);
assert!(optimized_plan.is_err());
assert!(optimized_plan
.unwrap_err()
.to_string()
Expand Down

0 comments on commit e1d66ac

Please sign in to comment.