diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-10-04 17:47:36 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-11-20 20:59:55 +0100 |
commit | 0b61e3540de353f2bf0a6904a87727e4efe9c5fa (patch) | |
tree | d1c30153a8e82858a3ee838c93db496e868c74db /tests/di | |
parent | [ticket/12620] Creates one di extension per phpBB extension (diff) | |
download | phpbb-0b61e3540de353f2bf0a6904a87727e4efe9c5fa.tar.gz phpbb-0b61e3540de353f2bf0a6904a87727e4efe9c5fa.tar.bz2 phpbb-0b61e3540de353f2bf0a6904a87727e4efe9c5fa.zip |
[ticket/12620] Fix tests
PHPBB3-12620
Diffstat (limited to 'tests/di')
-rw-r--r-- | tests/di/create_container_test.php | 1 | ||||
-rw-r--r-- | tests/di/fixtures/other_config/development/config.yml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/di/create_container_test.php b/tests/di/create_container_test.php index ec9828debb..4e47751999 100644 --- a/tests/di/create_container_test.php +++ b/tests/di/create_container_test.php @@ -146,7 +146,6 @@ namespace $this->assertInstanceOf('Symfony\Component\DependencyInjection\ContainerBuilder', $container); $this->assertTrue($container->hasParameter('my_parameter')); - $this->assertFalse($container->hasParameter('core.root_path')); } } } diff --git a/tests/di/fixtures/other_config/development/config.yml b/tests/di/fixtures/other_config/development/config.yml new file mode 100644 index 0000000000..fcfa84f68b --- /dev/null +++ b/tests/di/fixtures/other_config/development/config.yml @@ -0,0 +1,2 @@ +core: + require_dev_dependencies: true |