From a0d2c429b1711c1dc9fce965266a967af449ae93 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 16 Jul 2019 08:12:19 +0200 Subject: [PATCH] added missing test --- .../Tests/DependencyInjection/FrameworkExtensionTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php index 76e4a086f4..b850d7c8c3 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php @@ -1557,6 +1557,7 @@ abstract class FrameworkExtensionTest extends TestCase $this->assertTrue($container->hasAlias('mailer')); $this->assertTrue($container->hasDefinition('mailer.default_transport')); + $this->assertSame('smtp://example.com', $container->getDefinition('mailer.default_transport')->getArgument(0)); } protected function createContainer(array $data = [])