1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Do not add newlines to output

This commit is contained in:
Dries Vints 2016-12-06 16:03:03 +01:00 committed by Jordi Boggiano
parent a9e5be2b17
commit 2ab7df5566
3 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ class ProcessExecutorTest extends TestCase
$io = $this->getMock('Composer\IO\IOInterface');
$io->expects($this->once())
->method('write')
->with($this->equalTo('foo'.PHP_EOL));
->with($this->equalTo('foo'.PHP_EOL), false);
$process = new ProcessExecutor($io);
$process->execute('echo foo');