From 8a0c867a1056541ef73ced1d44de822281b0a872 Mon Sep 17 00:00:00 2001 From: nobohan Date: Thu, 18 Sep 2025 12:02:20 +0200 Subject: [PATCH] #426 correct test password in Tests up to 14 characters --- .../ChillMainBundle/Tests/Controller/UserControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php b/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php index 798f99240..e135d3447 100644 --- a/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php +++ b/src/Bundle/ChillMainBundle/Tests/Controller/UserControllerTest.php @@ -99,7 +99,7 @@ final class UserControllerTest extends WebTestCase { $client = $this->getClientAuthenticatedAsAdmin(); $crawler = $client->request('GET', "/fr/admin/user/{$userId}/edit_password"); - $newPassword = '1234Password!'; + $newPassword = '1234_Password!'; $form = $crawler->selectButton('Changer le mot de passe')->form([ 'chill_mainbundle_user_password[new_password][first]' => $newPassword,