Skip to content

Commit ebb9ee6

Browse files
committed
test fixes
1 parent 820ea99 commit ebb9ee6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

services/storage/tests/unit/test_rpc_handlers_paths.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)