Skip to content

Commit

Permalink
chore[rust]: Fix some test warnings (#4697)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Sep 2, 2022
1 parent 622c924 commit 7da9d21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions polars/polars-lazy/src/tests/queries.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use polars_arrow::prelude::QuantileInterpolOptions;
use polars_core::frame::explode::MeltArgs;
use polars_core::series::ops::NullBehavior;
use polars_core::utils::{concat_df, concat_df_unchecked};
use polars_core::utils::concat_df;
use polars_time::prelude::DateMethods;

use super::*;
Expand Down Expand Up @@ -2101,7 +2101,7 @@ fn test_foo() -> Result<()> {
.select([all().cast(DataType::Categorical(None)).list()])
.collect()?;

let mut out = concat_df(&[df.clone(), df.clone()])?;
let out = concat_df(&[df.clone(), df.clone()])?;
dbg!(out.agg_chunks());

Ok(())
Expand Down

0 comments on commit 7da9d21

Please sign in to comment.