Skip to content

Commit 49b91e8

Browse files
authored
fix: Use the remote and managed functions for bigframes results (#2079)
1 parent 12e4380 commit 49b91e8

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
@@ -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

0 commit comments

Comments
 (0)