Skip to content

Commit 32634fb

Browse files
committed
remove stray print in tests
1 parent 783810b commit 32634fb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

py-polars/tests/unit/operations/rolling/test_rolling.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ def example_df() -> pl.DataFrame:
5656
def test_rolling_kernels_and_rolling(
5757
example_df: pl.DataFrame, period: str | timedelta, closed: ClosedInterval
5858
) -> None:
59-
print(example_df) # kdn
6059
out1 = example_df.set_sorted("dt").select(
6160
pl.col("dt"),
6261
# this differs from group_by aggregation because the empty window is
@@ -88,8 +87,6 @@ def test_rolling_kernels_and_rolling(
8887
]
8988
)
9089
)
91-
print(out1) # kdn
92-
print(out2) # kdn
9390
assert_frame_equal(out1, out2)
9491

9592

0 commit comments

Comments
 (0)