Skip to content

Commit 55dc657

Browse files
committed
get more info on exception
1 parent aa21313 commit 55dc657

File tree

1 file changed

+1
-1
lines changed
  • modin/tests/pandas/native_df_interoperability

1 file changed

+1
-1
lines changed

modin/tests/pandas/native_df_interoperability/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def execute_callable(fn, inplace=False, md_kwargs={}, pd_kwargs={}):
120120
assert (
121121
type(md_e) is type(expected_exception)
122122
and md_e.args == expected_exception.args
123-
), f"not acceptable Modin's exception: [{repr(md_e)}]"
123+
), f"not acceptable Modin's exception: [{repr(md_e)}] expected {expected_exception}"
124124
assert (
125125
pd_e.args == expected_exception.args
126126
), f"not acceptable Pandas' exception: [{repr(pd_e)}]"

0 commit comments

Comments
 (0)