Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Firehed committed Jan 3, 2019
1 parent 62b6cac commit 9f5c8d3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Console/Tester/TesterTrait.php
Expand Up @@ -162,7 +162,7 @@ private static function createStream(array $inputs)
{
$stream = fopen('php://memory', 'r+', false);

fwrite($stream, implode(PHP_EOL, $inputs) . PHP_EOL);
fwrite($stream, implode(PHP_EOL, $inputs).PHP_EOL);
rewind($stream);

return $stream;
Expand Down
Expand Up @@ -137,7 +137,6 @@ public function testCommandWithDefaultInputs()
$this->assertEquals(implode('', $questions), $tester->getDisplay(true));
}


/**
* @expectedException \RuntimeException
* @expectedMessage Aborted
Expand Down

0 comments on commit 9f5c8d3

Please sign in to comment.