Skip to content

Commit

Permalink
FIX-modin-project#1620: Improve test robustness a bit per code review
Browse files Browse the repository at this point in the history
Signed-off-by: Vasilij Litvinov <[email protected]>
  • Loading branch information
vnlitvinov committed Dec 17, 2020
1 parent 97ecb5d commit e3b8117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modin/pandas/test/dataframe/test_indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ def test_loc_iter_assignment(loc_iter_dfs, reverse_order, axis):
select[axis] = sorted(pd_df.axes[axis][:-1], reverse=reverse_order)
select = tuple(select)

pd_df.loc[select] = pd_df.loc[select].copy()
md_df.loc[select] = md_df.loc[select].copy()
pd_df.loc[select] = pd_df.loc[select] + pd_df.loc[select]
md_df.loc[select] = md_df.loc[select] + md_df.loc[select]
df_equals(md_df, pd_df)


Expand Down

0 comments on commit e3b8117

Please sign in to comment.