Skip to content

Commit

Permalink
minor #35507 [DependencyInjection] Fix typo in test name (signor-pedro)
Browse files Browse the repository at this point in the history
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
-------

9cbfad5 [DependencyInjection] #35505 Fix typo in test name
  • Loading branch information
nicolas-grekas committed Feb 3, 2020
2 parents f758eca + 9cbfad5 commit af46fd6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1090,7 +1090,7 @@ public function testThrowsExceptionWhenSetServiceOnACompiledContainer()
$container->set('a', new \stdClass());
}

public function testThrowsExceptionWhenAddServiceOnACompiledContainer()
public function testNoExceptionWhenAddServiceOnACompiledContainer()
{
$container = new ContainerBuilder();
$container->compile();
Expand Down

0 comments on commit af46fd6

Please sign in to comment.