Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/system/large/functions/test_managed_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ def is_sum_positive_series(s):
pd_int64_df_filtered = pd_int64_df.dropna()

# Test callable condition in dataframe.where method.
bf_result = bf_int64_df_filtered.where(is_sum_positive_series).to_pandas()
bf_result = bf_int64_df_filtered.where(is_sum_positive_series_mf).to_pandas()
pd_result = pd_int64_df_filtered.where(is_sum_positive_series)

# Ignore any dtype difference.
Expand Down
2 changes: 1 addition & 1 deletion tests/system/large/functions/test_remote_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -3072,7 +3072,7 @@ def func_for_other(x):

# Test callable condition in dataframe.where method.
bf_result = bf_int64_df_filtered.where(
is_sum_positive_series, func_for_other
is_sum_positive_series_mf, func_for_other
).to_pandas()
pd_result = pd_int64_df_filtered.where(is_sum_positive_series, func_for_other)

Expand Down