chg: pkg: upgrade the BE deps to the latest possible version #14

This commit is contained in:
2026-07-27 18:35:42 +02:00
parent 4bf7ac358d
commit 82fff0cdf0
19 changed files with 1537 additions and 1522 deletions
+3 -3
View File
@@ -119,7 +119,7 @@ class SecurityControllerTest extends WebTestCase
self::assertResponseRedirects('/login');
static::getContainer()->get(EntityManagerInterface::class)->refresh($user->_real());
static::getContainer()->get(EntityManagerInterface::class)->refresh($user);
self::assertFalse($user->isVerified);
self::assertSame('expired-activation-token', $user->verificationToken);
}
@@ -138,7 +138,7 @@ class SecurityControllerTest extends WebTestCase
public function authenticatedUserRedirectsFromLogin(): void
{
$user = UserFactory::createOne();
$this->client->loginUser($user->_real());
$this->client->loginUser($user);
$this->client->request('GET', '/login');
@@ -150,7 +150,7 @@ class SecurityControllerTest extends WebTestCase
public function authenticatedUserRedirectsFromRegister(): void
{
$user = UserFactory::createOne();
$this->client->loginUser($user->_real());
$this->client->loginUser($user);
$this->client->request('GET', '/register');