@@ -225,7 +225,7 @@ public function testRealSubprocessExecutionAck(): void
225225
226226 $ logger = new ArrayLog ();
227227 $ config = [
228- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
228+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
229229 ];
230230 $ processor = new SubprocessProcessor ($ logger , $ config );
231231
@@ -253,7 +253,7 @@ public function testRealSubprocessExecutionReject(): void
253253
254254 $ logger = new ArrayLog ();
255255 $ config = [
256- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
256+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
257257 ];
258258 $ processor = new SubprocessProcessor ($ logger , $ config );
259259
@@ -281,7 +281,7 @@ public function testRealSubprocessExecutionWithException(): void
281281
282282 $ logger = new ArrayLog ();
283283 $ config = [
284- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
284+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
285285 ];
286286 $ processor = new SubprocessProcessor ($ logger , $ config );
287287
@@ -309,7 +309,7 @@ public function testSubprocessTimeout(): void
309309
310310 $ logger = new ArrayLog ();
311311 $ config = [
312- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
312+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
313313 'timeout ' => 1 ,
314314 ];
315315 $ processor = new SubprocessProcessor ($ logger , $ config );
@@ -344,7 +344,7 @@ public function testSubprocessWithInvalidCommand(): void
344344
345345 $ logger = new ArrayLog ();
346346 $ config = [
347- 'command ' => '/nonexistent/binary queue subprocess-runner ' ,
347+ 'command ' => '/nonexistent/binary queue subprocess_runner ' ,
348348 ];
349349 $ processor = new SubprocessProcessor ($ logger , $ config );
350350
@@ -445,7 +445,7 @@ public function testProcessJobInSubprocess(): void
445445
446446 $ logger = new ArrayLog ();
447447 $ config = [
448- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
448+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
449449 ];
450450 $ processor = new SubprocessProcessor ($ logger , $ config );
451451
@@ -468,7 +468,7 @@ public function testProcessJobInSubprocessReject(): void
468468
469469 $ logger = new ArrayLog ();
470470 $ config = [
471- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
471+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
472472 ];
473473 $ processor = new SubprocessProcessor ($ logger , $ config );
474474
@@ -491,7 +491,7 @@ public function testProcessJobInSubprocessWithException(): void
491491
492492 $ logger = new ArrayLog ();
493493 $ config = [
494- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
494+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
495495 ];
496496 $ processor = new SubprocessProcessor ($ logger , $ config );
497497
@@ -574,7 +574,7 @@ public function testSubprocessWithNormalOutputSize(): void
574574
575575 $ logger = new ArrayLog ();
576576 $ config = [
577- 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess-runner ' ,
577+ 'command ' => 'php ' . ROOT . 'bin/cake.php queue subprocess_runner ' ,
578578 'maxOutputSize ' => 1048576 , // 1MB - normal size
579579 'timeout ' => 30 ,
580580 ];
0 commit comments