Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Iaroslav <[email protected]>
  • Loading branch information
YarShev committed May 14, 2024
1 parent bed0590 commit ea20c46
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modin/core/storage_formats/pandas/query_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -1615,16 +1615,16 @@ def expanding_corr(
args=args,
kwargs=kwargs,
),
shape_preserved=True,
)
),
shape_preserved=True,
)
rolling_quantile = Fold.register(
lambda df, rolling_kwargs, q, interpolation, **kwargs: pandas.DataFrame(
df.rolling(**rolling_kwargs).quantile(
q=q, interpolation=interpolation, **kwargs
),
shape_preserved=True,
)
),
shape_preserved=True,
)
rolling_rank = Fold.register(
lambda df, rolling_kwargs, method, ascending, pct, numeric_only, **kwargs: pandas.DataFrame(
Expand All @@ -1635,8 +1635,8 @@ def expanding_corr(
numeric_only=numeric_only,
**kwargs,
),
shape_preserved=True,
)
),
shape_preserved=True,
)

def rolling_corr(self, axis, rolling_kwargs, other, pairwise, *args, **kwargs):
Expand Down

0 comments on commit ea20c46

Please sign in to comment.