Skip to content

Commit

Permalink
remove
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Apr 19, 2024
1 parent 25c2668 commit 6caab1d
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions crates/polars/tests/it/lazy/projection_queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,6 @@ fn test_outer_join_with_column_2988() -> PolarsResult<()> {
Ok(())
}

#[test]
fn test_err_no_found() {
let df = df![
"a" => [1, 2, 3],
"b" => [None, Some("a"), Some("b")]
]
.unwrap();

assert!(matches!(
df.lazy().filter(col("nope").gt(lit(2))).collect(),
Err(PolarsError::ColumnNotFound(_))
));
}

#[test]
fn test_many_aliasing_projections_5070() -> PolarsResult<()> {
let df = df! {
Expand Down

0 comments on commit 6caab1d

Please # to comment.