Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-beedie committed Oct 24, 2023
1 parent 366c294 commit bb440ec
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion crates/polars-lazy/src/tests/predicate_queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ fn test_predicate_on_join_suffix_4788() -> PolarsResult<()> {
let q = (lf.clone().join_builder().with(lf))
.left_on([col("y")])
.right_on([col("y")])
.name()
.suffix("_")
.finish()
.filter(col("x").eq(1))
Expand Down
1 change: 0 additions & 1 deletion crates/polars-lazy/src/tests/projection_queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ fn test_join_suffix_and_drop() -> PolarsResult<()> {
.with(weight)
.left_on([col("sireid")])
.right_on([col("id")])
.name()
.suffix("_sire")
.finish()
.drop_columns(["sireid"])
Expand Down
1 change: 0 additions & 1 deletion crates/polars-lazy/src/tests/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ fn test_streaming_partial() -> PolarsResult<()> {
.with(lf_left.clone())
.left_on([col("a")])
.right_on([col("a")])
.name()
.suffix("_foo")
.how(JoinType::Outer)
.finish();
Expand Down

0 comments on commit bb440ec

Please sign in to comment.