Skip to content

Commit 3ff7583

Browse files
Merge branch '7.1' into 7.2
* 7.1: Fix ProcessTest - testIgnoringSignal for local [Console][PhpUnitBridge][VarDumper] Fix `NO_COLOR` empty value handling [Translation] Fix CSV escape char in `CsvFileLoader` on PHP >= 7.4 [DoctrineBridge] fix messenger bus dispatch inside an active transaction [HttpFoundation] Add tests for uncovered sections treat uninitialized properties referenced by property paths as null [PropertyInfo] Check if property is nullable when using `ReflectionExtractor` properly set up constraint options [ErrorHandler][VarDumper] Remove PHP 8.4 deprecations move adding detailed JSON error messages to the validate phase [Profiler] Add word wrap in tables in dialog to see all the text [Core] Fix & Enhance security arabic translation. [HttpFoundation] Add tests for `MethodRequestMatcher` and `SchemeRequestMatcher`
2 parents 5c9cf89 + 7f2f542 commit 3ff7583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/ProcessTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ public function testIgnoringSignal()
16691669
$this->markTestSkipped('pnctl extension is required.');
16701670
}
16711671

1672-
$process = $this->getProcess('sleep 10');
1672+
$process = $this->getProcess(['sleep', '10']);
16731673
$process->setIgnoredSignals([\SIGTERM]);
16741674

16751675
$process->start();
@@ -1685,7 +1685,7 @@ public function testNotIgnoringSignal()
16851685
$this->markTestSkipped('pnctl extension is required.');
16861686
}
16871687

1688-
$process = $this->getProcess('sleep 10');
1688+
$process = $this->getProcess(['sleep', '10']);
16891689

16901690
$process->start();
16911691
$process->stop(timeout: 0.2);

0 commit comments

Comments
 (0)