Skip to content

Commit 75dc910

Browse files
test is gone
1 parent 7cfffd7 commit 75dc910

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

services/storage/tests/unit/test_async_jobs.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,14 @@ async def test_async_jobs_cancel(
277277
job_id_data=job_id_data,
278278
)
279279

280+
jobs = await async_jobs.list_jobs(
281+
storage_rabbitmq_rpc_client,
282+
rpc_namespace=STORAGE_RPC_NAMESPACE,
283+
filter_="", # currently not used
284+
job_id_data=job_id_data,
285+
)
286+
assert async_job_get.job_id not in [job.job_id for job in jobs]
287+
280288
with pytest.raises(JobAbortedError):
281289
await async_jobs.result(
282290
storage_rabbitmq_rpc_client,

0 commit comments

Comments
 (0)