Skip to content

Commit 6f11fb2

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: Add completion for debug:twig [SecurityBundle] Fix tests [RateLimiter] Increase delta in limiter tests [Console][AppVeyor] Fix EOL in the tests [PasswordHasher] Fix completion tests
2 parents 5030279 + 60c4aba commit 6f11fb2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Command/UserPasswordHashCommandTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,15 +302,15 @@ public function testCompletionSuggestions(array $input, array $expectedSuggestio
302302
$this->assertSame($expectedSuggestions, $tester->complete($input));
303303
}
304304

305-
public function provideCompletionSuggestions()
305+
public function provideCompletionSuggestions(): iterable
306306
{
307307
yield 'user_class_empty' => [
308-
[''],
308+
['p@ssw0rd', ''],
309309
['App\Entity\User'],
310310
];
311311

312312
yield 'user_class_given' => [
313-
['App'],
313+
['p@ssw0rd', 'App'],
314314
['App\Entity\User'],
315315
];
316316
}

0 commit comments

Comments
 (0)