Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Jan 31, 2025
1 parent b3607b3 commit 9f7f515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-polars/tests/unit/operations/test_cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ def test_cast_python_dtypes() -> None:


def test_overflowing_cast_literals_21023() -> None:
for optimized in [True, False]:
for no_optimization in [True, False]:
assert_frame_equal(
(
pl.LazyFrame()
Expand All @@ -710,7 +710,7 @@ def test_overflowing_cast_literals_21023() -> None:
pl.Int8, wrap_numerical=True
)
)
.collect(optimized=optimized)
.collect(no_optimization=no_optimization)
),
pl.Series([-128], dtype=pl.Int8).to_frame(),
)

0 comments on commit 9f7f515

Please sign in to comment.