Skip to content

Commit d66623e

Browse files
committed
remove not needed legacy test groups
1 parent e2c5c67 commit d66623e

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Tests/RememberMe/RememberMeDetailsTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Component\Security\Http\Tests\RememberMe;
1313

14-
use PHPUnit\Framework\Attributes\Group;
15-
use PHPUnit\Framework\Attributes\IgnoreDeprecations;
1614
use PHPUnit\Framework\TestCase;
1715
use Symfony\Component\Security\Core\Authentication\RememberMe\PersistentToken;
1816
use Symfony\Component\Security\Core\User\InMemoryUser;
@@ -50,8 +48,6 @@ public function testFromRawCookieChildClassWithoutConstructor()
5048
$this->assertSame('series1:token_value', $rememberMeDetails->getValue());
5149
}
5250

53-
#[Group('legacy')]
54-
#[IgnoreDeprecations]
5551
public function testFromLegacyRawCookie()
5652
{
5753
$rememberMeDetails = RememberMeDetails::fromRawCookie(self::getLegacyRememberMeCookieValue());
@@ -62,8 +58,6 @@ public function testFromLegacyRawCookie()
6258
$this->assertSame('series1:token_value', $rememberMeDetails->getValue());
6359
}
6460

65-
#[Group('legacy')]
66-
#[IgnoreDeprecations]
6761
public function testFromLegacyRawCookieChildClassWithNewConstructorSignature()
6862
{
6963
$rememberMeDetails = RememberMeDetailsChild::fromRawCookie(self::getLegacyRememberMeCookieValue());
@@ -74,8 +68,6 @@ public function testFromLegacyRawCookieChildClassWithNewConstructorSignature()
7468
$this->assertSame('series1:token_value', $rememberMeDetails->getValue());
7569
}
7670

77-
#[Group('legacy')]
78-
#[IgnoreDeprecations]
7971
public function testFromLegacyRawCookieChildClassWithoutConstructor()
8072
{
8173
$rememberMeDetails = RememberMeDetailsChildWithoutConstructor::fromRawCookie(self::getLegacyRememberMeCookieValue());

0 commit comments

Comments
 (0)