diff --git a/tests/system/large/functions/test_remote_function.py b/tests/system/large/functions/test_remote_function.py index f50e8c0a04..dae51c5b49 100644 --- a/tests/system/large/functions/test_remote_function.py +++ b/tests/system/large/functions/test_remote_function.py @@ -1651,13 +1651,12 @@ def square(x): return x * x -# Note: Zero represents default, which is 100 instances actually, which is why the remote function still works -# in the df.apply() call here +# The default value of 100 is used if the maximum instances value is not set. @pytest.mark.parametrize( ("max_instances_args", "expected_max_instances"), [ - pytest.param({}, 0, id="no-set"), - pytest.param({"cloud_function_max_instances": None}, 0, id="set-None"), + pytest.param({}, 100, id="no-set"), + pytest.param({"cloud_function_max_instances": None}, 100, id="set-None"), pytest.param({"cloud_function_max_instances": 1000}, 1000, id="set-explicit"), ], )