From 88c6a2f6db53b9edb0dea58c52056db835b02af5 Mon Sep 17 00:00:00 2001 From: Bert Blommers Date: Sat, 9 Oct 2021 21:31:10 +0000 Subject: [PATCH] Update test_batch_jobs.py --- tests/test_batch/test_batch_jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_batch/test_batch_jobs.py b/tests/test_batch/test_batch_jobs.py index 918c81108..b16e52333 100644 --- a/tests/test_batch/test_batch_jobs.py +++ b/tests/test_batch/test_batch_jobs.py @@ -225,7 +225,7 @@ def test_cancel_pending_job(): job_id = resp["jobId"] batch_client.cancel_job(jobId=job_id, reason="test_cancel") - _wait_for_job_status(batch_client, job_id, "FAILED", seconds_to_wait=10) + _wait_for_job_status(batch_client, job_id, "FAILED", seconds_to_wait=30) resp = batch_client.describe_jobs(jobs=[job_id]) resp["jobs"][0]["jobName"].should.equal("test_job_name")