File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
tests/system/large/functions Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1166,7 +1166,7 @@ def is_sum_positive_series(s):
11661166 pd_int64_df_filtered = pd_int64_df .dropna ()
11671167
11681168 # Test callable condition in dataframe.where method.
1169- bf_result = bf_int64_df_filtered .where (is_sum_positive_series ).to_pandas ()
1169+ bf_result = bf_int64_df_filtered .where (is_sum_positive_series_mf ).to_pandas ()
11701170 pd_result = pd_int64_df_filtered .where (is_sum_positive_series )
11711171
11721172 # Ignore any dtype difference.
Original file line number Diff line number Diff line change @@ -3072,7 +3072,7 @@ def func_for_other(x):
30723072
30733073 # Test callable condition in dataframe.where method.
30743074 bf_result = bf_int64_df_filtered .where (
3075- is_sum_positive_series , func_for_other
3075+ is_sum_positive_series_mf , func_for_other
30763076 ).to_pandas ()
30773077 pd_result = pd_int64_df_filtered .where (is_sum_positive_series , func_for_other )
30783078
You can’t perform that action at this time.
0 commit comments