We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 783810b commit 32634fbCopy full SHA for 32634fb
py-polars/tests/unit/operations/rolling/test_rolling.py
@@ -56,7 +56,6 @@ def example_df() -> pl.DataFrame:
56
def test_rolling_kernels_and_rolling(
57
example_df: pl.DataFrame, period: str | timedelta, closed: ClosedInterval
58
) -> None:
59
- print(example_df) # kdn
60
out1 = example_df.set_sorted("dt").select(
61
pl.col("dt"),
62
# this differs from group_by aggregation because the empty window is
@@ -88,8 +87,6 @@ def test_rolling_kernels_and_rolling(
88
87
]
89
)
90
91
- print(out1) # kdn
92
- print(out2) # kdn
93
assert_frame_equal(out1, out2)
94
95
0 commit comments