Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 11, 2024
1 parent 3239f9c commit 86305a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/polars/tests/it/lazy/queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ fn test_apply_multiple_columns() -> PolarsResult<()> {
.select([map_multiple(
multiply,
[col("A"), col("B")],
GetOutput::from_type(DataType::Float64),
GetOutput::from_type(DataType::Int32),
)])
.collect()?;
let out = out.column("A")?;
Expand All @@ -219,7 +219,7 @@ fn test_apply_multiple_columns() -> PolarsResult<()> {
.agg([apply_multiple(
multiply,
[col("A"), col("B")],
GetOutput::from_type(DataType::Float64),
GetOutput::from_type(DataType::Int32),
true,
)])
.collect()?;
Expand Down

0 comments on commit 86305a1

Please sign in to comment.