Skip to content

Commit c49f14f

Browse files
committed
Merge branch '3.2'
* 3.2: fixed tests
2 parents 2819a57 + 93a00b0 commit c49f14f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Process/Tests/ProcessFailedExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function testProcessFailedExceptionPopulatesInformationFromProcessOutput(
4949
$errorOutput = 'FATAL: Unexpected error';
5050
$workingDirectory = getcwd();
5151

52-
$process = $this->getMockBuilder('Symfony\Component\Process\Process')->setMethods(array('isSuccessful', 'getOutput', 'getErrorOutput', 'getExitCode', 'getExitCodeText', 'isOutputDisabled', 'getWorkingDirectory'))->setConstructorArgs(array($cmd));
52+
$process = $this->getMockBuilder('Symfony\Component\Process\Process')->setMethods(array('isSuccessful', 'getOutput', 'getErrorOutput', 'getExitCode', 'getExitCodeText', 'isOutputDisabled', 'getWorkingDirectory'))->setConstructorArgs(array($cmd))->getMock();
5353
$process->expects($this->once())
5454
->method('isSuccessful')
5555
->will($this->returnValue(false));

0 commit comments

Comments
 (0)