We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d822cb6 commit f143c1eCopy full SHA for f143c1e
Tests/ProcessTest.php
@@ -75,7 +75,7 @@ public function testThatProcessDoesNotThrowWarningDuringRun()
75
$process = $this->getProcessForCode('sleep(3)');
76
$process->run();
77
$actualError = error_get_last();
78
- $this->assertEquals('Test Error', $actualError['message']);
+ $this->assertEquals('Test Error', $actualError['message'], print_r($actualError, true));
79
$this->assertEquals(E_USER_NOTICE, $actualError['type']);
80
}
81
0 commit comments