Skip to content

Commit f143c1e

Browse files
Re-enable previously failing PHP 7.4 test cases
1 parent d822cb6 commit f143c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ProcessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function testThatProcessDoesNotThrowWarningDuringRun()
7575
$process = $this->getProcessForCode('sleep(3)');
7676
$process->run();
7777
$actualError = error_get_last();
78-
$this->assertEquals('Test Error', $actualError['message']);
78+
$this->assertEquals('Test Error', $actualError['message'], print_r($actualError, true));
7979
$this->assertEquals(E_USER_NOTICE, $actualError['type']);
8080
}
8181

0 commit comments

Comments
 (0)