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 @@ -3066,7 +3066,7 @@ def func_for_other(x):
30663066
30673067 # Test callable condition in dataframe.where method.
30683068 bf_result = bf_int64_df_filtered .where (
3069- is_sum_positive_series , func_for_other
3069+ is_sum_positive_series_mf , func_for_other
30703070 ).to_pandas ()
30713071 pd_result = pd_int64_df_filtered .where (is_sum_positive_series , func_for_other )
30723072
You can’t perform that action at this time.
0 commit comments