Skip to content

Commit 9771e1a

Browse files
committed
Load the config file for Symfony 6.4 in E2E tests
1 parent 8d37f15 commit 9771e1a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/End2End/App/Kernel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
4848
$loader->load(__DIR__ . '/deprecations_for_6.yml');
4949
}
5050

51+
if (self::VERSION_ID >= 60400) {
52+
$loader->load(__DIR__ . '/deprecations_for_64.yml');
53+
}
54+
5155
if (interface_exists(MessageBusInterface::class) && self::VERSION_ID >= 40300) {
5256
$loader->load(__DIR__ . '/messenger.yml');
5357
}

0 commit comments

Comments
 (0)