From 3de5b38cea488efd4939e1d1f219ac35e3b0ad3b Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 1 Apr 2021 12:10:12 +0200 Subject: [PATCH] fix test --- .../FrameworkBundle/Tests/Kernel/MicroKernelTraitTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Kernel/MicroKernelTraitTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Kernel/MicroKernelTraitTest.php index cc5573d43dc30..d5055f33259b2 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Kernel/MicroKernelTraitTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Kernel/MicroKernelTraitTest.php @@ -136,7 +136,7 @@ protected function configureRoutes(RoutingConfigurator $routes): void }; $this->expectException(\LogicException::class); - $this->expectExceptionMessage('"Symfony\Bundle\FrameworkBundle\Tests\Kernel\MinimalKernel@anonymous" uses "Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait", but does not implement the required method "protected function configureContainer(ContainerConfigurator $c): void".'); + $this->expectExceptionMessage('"Symfony\Bundle\FrameworkBundle\Tests\Kernel\MinimalKernel@anonymous" uses "Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait", but does not implement the required method "protected function configureContainer(ContainerConfigurator $container): void".'); $kernel->boot(); }