minor #35507 [DependencyInjection] Fix typo in test name (signor-pedro)

This PR was merged into the 3.4 branch.

Discussion
----------

[DependencyInjection] Fix typo in test name

Rename testThrowsExceptionWhenAddServiceOnACompiledContainer to testNoExceptionWhenAddServiceOnACompiledContainer.

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes (technically)
| New feature?  | no
| Deprecations? | no
| Tickets       | #35505
| License       | MIT
| Doc PR        | symfony/symfony-docs#... <!-- required for new features -->

Commits
-------

9cbfad5853 [DependencyInjection] #35505 Fix typo in test name
This commit is contained in:
Nicolas Grekas 2020-02-03 11:21:26 +01:00
commit af46fd6961
1 changed files with 1 additions and 1 deletions

View File

@ -1090,7 +1090,7 @@ class ContainerBuilderTest extends TestCase
$container->set('a', new \stdClass());
}
public function testThrowsExceptionWhenAddServiceOnACompiledContainer()
public function testNoExceptionWhenAddServiceOnACompiledContainer()
{
$container = new ContainerBuilder();
$container->compile();