Skip to content

Commit

Permalink
include negative offsets in hypothesis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed May 13, 2024
1 parent 54e0af0 commit 5b6f8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/parametric/test_groupby_rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
min_value=timedelta(microseconds=0), max_value=timedelta(days=1000)
).map(parse_as_duration_string),
offset=st.timedeltas(
min_value=timedelta(microseconds=0), max_value=timedelta(days=1000)
min_value=timedelta(days=-1000), max_value=timedelta(days=1000)
).map(parse_as_duration_string),
closed=strategy_closed,
data=st.data(),
Expand Down

0 comments on commit 5b6f8e6

Please sign in to comment.