Skip to content

Commit

Permalink
minor #20386 [SecurityBundle] Fix term width in UserPasswordEncoderCo…
Browse files Browse the repository at this point in the history
…mmandTest (nicolas-grekas)

This PR was merged into the 3.1 branch.

Discussion
----------

[SecurityBundle] Fix term width in UserPasswordEncoderCommandTest

| Q             | A
| ------------- | ---
| Branch?       | 3.1
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

Commits
-------

e342056 [SecurityBundle] Fix term width in UserPasswordEncoderCommandTest
  • Loading branch information
nicolas-grekas committed Nov 2, 2016
2 parents cd9bbb5 + e342056 commit 031f4c2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -144,7 +144,7 @@ protected function setUp()
$kernel->boot();

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

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

0 comments on commit 031f4c2

Please sign in to comment.