8000 Merge branch '3.1' into 3.2 · symfony/symfony@93a00b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 93a00b0

Browse files
committed
Merge branch '3.1' into 3.2
* 3.1: fixed tests
2 parents 0a9e391 + e618ff3 commit 93a00b0

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)
0