You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->fail('AutowirePass should have thrown an exception');
1199
+
} catch (AutowiringFailedException$e) {
1200
+
$this->assertSame('Cannot autowire service "a": argument "$k" of method "Symfony\Component\DependencyInjection\Tests\Compiler\NotGuessableArgument::__construct()" has type "Symfony\Component\DependencyInjection\Tests\Compiler\Foo" but this symbol has been excluded.', (string) $e->getMessage());
$this->fail('AutowirePass should have thrown an exception');
1216
+
} catch (AutowiringFailedException$e) {
1217
+
$this->assertSame('Cannot autowire service "a": argument "$k" of method "Symfony\Component\DependencyInjection\Tests\Compiler\NotGuessableArgument::__construct()" has type "Symfony\Component\DependencyInjection\Tests\Compiler\Foo" but the "Symfony\Component\DependencyInjection\Tests\Compiler" namespace has been excluded.', (string) $e->getMessage());
0 commit comments