Skip to content

Commit cb43e1f

Browse files
committed
[FrameworkBundle] Fix UidTest
1 parent 59b0d52 commit cb43e1f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Tests/Functional/UidTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

1414
use Symfony\Bundle\FrameworkBundle\Tests\Functional\Bundle\TestBundle\Controller\UidController;
15-
use Symfony\Component\HttpKernel\Controller\ArgumentResolver\UidValueResolver;
1615
use Symfony\Component\Uid\Ulid;
1716
use Symfony\Component\Uid\UuidV1;
1817
use Symfony\Component\Uid\UuidV4;
@@ -42,10 +41,6 @@ public function testArgumentValueResolverDisabled()
4241

4342
public function testArgumentValueResolverEnabled()
4443
{
45-
if (!class_exists(UidValueResolver::class)) {
46-
$this->markTestSkipped('Needs symfony/http-kernel >= 6.1');
47-
}
48-
4944
$client = $this->createClient(['test_case' => 'Uid', 'root_config' => 'config_enabled.yml']);
5045

5146
// Any format
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
imports:
22
- { resource: "../config/default.yml" }
3+
4+
framework:
5+
uid:
6+
enabled: false

0 commit comments

Comments
 (0)