Skip to content

Commit

Permalink
Expect ColumnNotFoundError in multiple encountered errors test
Browse files Browse the repository at this point in the history
  • Loading branch information
trueb2 committed Dec 16, 2023
1 parent ae95c79 commit b16860c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/test_errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def cool_stuff(lf: pl.LazyFrame) -> pl.LazyFrame:
for _ in range(n):
df = cool_stuff(df)

with pytest.raises(pl.ComputeError, match="Multiple AlreadyEncountered"):
with pytest.raises(pl.ColumnNotFoundError):
df.collect()


Expand Down

0 comments on commit b16860c

Please sign in to comment.