8000 fix merge · alexpott/symfony@d9746d4 · GitHub
[go: up one dir, main page]

Skip to content

Commit d9746d4

Browse files
committed
fix merge
1 parent 7fb9f61 commit d9746d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ public function testAutocompleteWithTrailingBackslash()
162162
$inputStream = $this->getInputStream('E');
163163

164164
$dialog = new QuestionHelper();
165-
$dialog->setInputStream($inputStream);
166165
$helperSet = new HelperSet(array(new FormatterHelper()));
167166
$dialog->setHelperSet($helperSet);
168167

@@ -171,7 +170,7 @@ public function testAutocompleteWithTrailingBackslash()
171170
$question->setAutocompleterValues(array($expectedCompletion));
172171

173172
$output = $this->createOutputInterface();
174-
$dialog->ask($this->createInputInterfaceMock(), $output, $question);
173+
$dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $output, $question);
175174

176175
$outputStream = $output->getStream();
177176
rewind($outputStream);

0 commit comments

Comments
 (0)
0