Skip to content

Commit adccd7e

Browse files
committed
Update TestRunner.php
1 parent 1dc7b80 commit adccd7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Framework/TestRunner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public function run(TestCase $test): void
251251
*/
252252
public function runInSeparateProcess(TestCase $test, bool $runEntireClass, bool $preserveGlobalState): void
253253
{
254-
if ($runEntireClass && $this->isPcntlForkAvailable()) {
254+
if ($this->isPcntlForkAvailable()) {
255255
// forking the parent process is a more lightweight way to run a test in isolation.
256256
// it requires the pcntl extension though.
257257
$this->runInFork($test);

0 commit comments

Comments
 (0)