Skip to content

Commit

Permalink
FIX-modin-project#3342: remove unnecessary
Browse files Browse the repository at this point in the history
Signed-off-by: Myachev <[email protected]>
  • Loading branch information
anmyachev committed Aug 19, 2021
1 parent 55945ff commit fbc809a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions modin/pandas/test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def execute_callable(fn, inplace=False, md_kwargs={}, pd_kwargs={}):

def eval_io(
fn_name,
comparator=None,
comparator=df_equals,
cast_to_str=False,
check_exception_type=True,
raising_exceptions=io_ops_bad_exc,
Expand All @@ -745,8 +745,8 @@ def eval_io(
----------
fn_name: str
I/O operation name ("read_csv" for example).
comparator: obj, optional
Function to perform comparison. `df_equals` by default.
comparator: obj
Function to perform comparison.
cast_to_str: bool
There could be some missmatches in dtypes, so we're
casting the whole frame to `str` before comparison.
Expand Down Expand Up @@ -775,7 +775,6 @@ def call_eval_general():
pd,
pandas,
applyier,
comparator=df_equals if comparator is None else comparator,
check_exception_type=check_exception_type,
raising_exceptions=raising_exceptions,
check_kwargs_callable=check_kwargs_callable,
Expand Down

0 comments on commit fbc809a

Please sign in to comment.