@@ -391,7 +391,7 @@ individual_job_start_stop({Top, {Db1, _, _}}) ->
391
391
JobUrl = Top ++ ? JOBS ++ ? b2l (Id ),
392
392
StUrl = JobUrl ++ " /state" ,
393
393
394
- % Wait for the the job to start running and intercept it in topoff1 state
394
+ % Wait for the job to start running and intercept it in topoff1 state
395
395
receive
396
396
{JobPid , topoff1 } -> ok
397
397
end ,
@@ -410,7 +410,7 @@ individual_job_start_stop({Top, {Db1, _, _}}) ->
410
410
411
411
% Start the job again
412
412
? assertMatch ({200 , _ }, req (put , StUrl , #{state => running })),
413
- % Wait for the the job to start running and intercept it in topoff1 state
413
+ % Wait for the job to start running and intercept it in topoff1 state
414
414
receive
415
415
{JobPid2 , topoff1 } -> ok
416
416
end ,
@@ -460,7 +460,7 @@ individual_job_stop_when_cluster_stopped({Top, {Db1, _, _}}) ->
460
460
JobUrl = Top ++ ? JOBS ++ ? b2l (Id ),
461
461
StUrl = JobUrl ++ " /state" ,
462
462
463
- % Wait for the the job to start running and intercept in topoff1
463
+ % Wait for the job to start running and intercept in topoff1
464
464
receive
465
465
{JobPid , topoff1 } -> ok
466
466
end ,
@@ -487,7 +487,7 @@ individual_job_stop_when_cluster_stopped({Top, {Db1, _, _}}) ->
487
487
% It should be possible to resume job and it should complete
488
488
? assertMatch ({200 , _ }, req (put , StUrl , #{state => running })),
489
489
490
- % Wait for the the job to start running and intercept in topoff1 state
490
+ % Wait for the job to start running and intercept in topoff1 state
491
491
receive
492
492
{JobPid2 , topoff1 } -> ok
493
493
end ,
0 commit comments