typo fixed in AbstractProcessTest (getoutput() => getOutput())

This commit is contained in:
Yevgen Kovalienia 2014-09-23 00:14:46 +02:00 committed by Fabien Potencier
parent 3a3fb05cdf
commit 36998bb629
1 changed files with 1 additions and 1 deletions

View File

@ -705,7 +705,7 @@ abstract class AbstractProcessTest extends \PHPUnit_Framework_TestCase
usleep(500000);
$process->signal(SIGUSR1);
while ($process->isRunning() && false === strpos($process->getoutput(), 'Caught SIGUSR1')) {
while ($process->isRunning() && false === strpos($process->getOutput(), 'Caught SIGUSR1')) {
usleep(10000);
}