File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
services/storage/tests/unit Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,9 @@ async def _assert_compute_path_size(
8181 rpc_namespace = STORAGE_RPC_NAMESPACE ,
8282 method_name = RPCMethodName (compute_path_size .__name__ ),
8383 job_id = async_job .job_id ,
84- job_filter = AsyncJobFilter (user_id = user_id , product_name = product_name ),
84+ job_filter = AsyncJobFilter (
85+ user_id = user_id , product_name = product_name , client_name = "PYTEST_CLIENT_NAME"
86+ ),
8587 client_timeout = datetime .timedelta (seconds = 120 ),
8688 ):
8789 if job_composed_result .done :
@@ -115,7 +117,9 @@ async def _assert_delete_paths(
115117 rpc_namespace = STORAGE_RPC_NAMESPACE ,
116118 method_name = RPCMethodName (compute_path_size .__name__ ),
117119 job_id = async_job .job_id ,
118- job_filter = AsyncJobFilter (user_id = user_id , product_name = product_name ),
120+ job_filter = AsyncJobFilter (
121+ user_id = user_id , product_name = product_name , client_name = "PYTEST_CLIENT_NAME"
122+ ),
119123 client_timeout = datetime .timedelta (seconds = 120 ),
120124 ):
121125 if job_composed_result .done :
You can’t perform that action at this time.
0 commit comments