From b8f02f48bdf03f8df1e868d2cc63f402e99fdd70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20Espi=C3=A9?= Date: Fri, 21 Aug 2026 10:00:20 +0200 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../unitary-tests/application/LoginFSM/LoginBasicTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php-unit-tests/unitary-tests/application/LoginFSM/LoginBasicTest.php b/tests/php-unit-tests/unitary-tests/application/LoginFSM/LoginBasicTest.php index e40579c1b2..b2dfe4fe6f 100644 --- a/tests/php-unit-tests/unitary-tests/application/LoginFSM/LoginBasicTest.php +++ b/tests/php-unit-tests/unitary-tests/application/LoginFSM/LoginBasicTest.php @@ -30,7 +30,7 @@ class LoginBasicTest extends ItopDataTestCase { // Given $oLoginBasic = new LoginBasic(); - $_SERVER['HTTP_AUTHORIZATION'] = 'Bearer '.base64_encode("Login:BasicTest"); + $_SERVER['HTTP_AUTHORIZATION'] = 'Basic '.base64_encode("Login:BasicTest"); // When $_SESSION = [];