@@ -1047,7 +1047,7 @@ def test_remote_function_via_session_context_connection_setter(
1047
1047
# unique dataset_id, even though the cloud function would be reused, the bq
1048
1048
# remote function would still be created, making use of the bq connection
1049
1049
# set in the BigQueryOptions above.
1050
- @session .remote_function ([int ], int , dataset = dataset_id )
1050
+ @session .remote_function ([int ], int , dataset = dataset_id , reuse = False )
1051
1051
def square (x ):
1052
1052
return x * x
1053
1053
@@ -1084,7 +1084,7 @@ def square(x):
1084
1084
def test_remote_function_default_connection (session , scalars_dfs , dataset_id ):
1085
1085
try :
1086
1086
1087
- @session .remote_function ([int ], int , dataset = dataset_id )
1087
+ @session .remote_function ([int ], int , dataset = dataset_id , reuse = False )
1088
1088
def square (x ):
1089
1089
return x * x
1090
1090
@@ -1121,7 +1121,7 @@ def square(x):
1121
1121
def test_remote_function_runtime_error (session , scalars_dfs , dataset_id ):
1122
1122
try :
1123
1123
1124
- @session .remote_function ([int ], int , dataset = dataset_id )
1124
+ @session .remote_function ([int ], int , dataset = dataset_id , reuse = False )
1125
1125
def square (x ):
1126
1126
return x * x
1127
1127
0 commit comments