From d1f295dd4a8f511108ed2ec3fd29acabdbde3647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Mon, 17 Nov 2025 14:15:11 +0100 Subject: [PATCH] fix(tests): Fix login test for remember me checkbox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- build/integration/features/bootstrap/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/integration/features/bootstrap/Auth.php b/build/integration/features/bootstrap/Auth.php index aeaade85383..fae66ba8f02 100644 --- a/build/integration/features/bootstrap/Auth.php +++ b/build/integration/features/bootstrap/Auth.php @@ -220,7 +220,7 @@ trait Auth { 'form_params' => [ 'user' => 'user0', 'password' => '123456', - 'remember_login' => $remember ? '1' : '0', + 'rememberme' => $remember ? '1' : '0', 'requesttoken' => $this->requestToken, ], 'cookies' => $this->cookieJar,