Skip to content

Commit e342056

Browse files
[SecurityBundle] Fix term width in UserPasswordEncoderCommandTest
1 parent cd9bbb5 commit e342056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/SecurityBundle/Tests/Functional/UserPasswordEncoderCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ protected function setUp()
144144
$kernel->boot();
145145

146146
$application = new Application($kernel);
147-
$application->setTerminalDimensions(120, 80);
147+
$application->setTerminalDimensions(119 + strlen(PHP_EOL), 80);
148148

149149
$application->add(new UserPasswordEncoderCommand());
150150
$passwordEncoderCommand = $application->find('security:encode-password');

0 commit comments

Comments
 (0)