Skip to content

Commit ad28793

Browse files
committed
fix: Use the remote and managed functions for bigframes results
1 parent 8804ada commit ad28793

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/system/large/functions/test_managed_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

tests/system/large/functions/test_remote_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)