diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-01-03 21:41:36 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-01-03 21:41:36 +0100 |
commit | 072bf470fc252ae5942956df896765c3b0e53e66 (patch) | |
tree | 5a0e929f0f41f7283dd75a1815f6f12cdf82dfa9 /tests/di/create_container_test.php | |
parent | 56314f4c22491dd5b2aacb2a013850c7f3171be8 (diff) | |
parent | 14fd750b087c7c9e31f9701bb08ced08db964d12 (diff) | |
download | forums-072bf470fc252ae5942956df896765c3b0e53e66.tar forums-072bf470fc252ae5942956df896765c3b0e53e66.tar.gz forums-072bf470fc252ae5942956df896765c3b0e53e66.tar.bz2 forums-072bf470fc252ae5942956df896765c3b0e53e66.tar.xz forums-072bf470fc252ae5942956df896765c3b0e53e66.zip |
Merge branch 'ticket/14957' into ticket/14957-rhea
Diffstat (limited to 'tests/di/create_container_test.php')
-rw-r--r-- | tests/di/create_container_test.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/di/create_container_test.php b/tests/di/create_container_test.php index aba7a3560b..1fd2cbd7ee 100644 --- a/tests/di/create_container_test.php +++ b/tests/di/create_container_test.php @@ -46,6 +46,7 @@ namespace { $container = $this->builder->get_container(); $this->assertInstanceOf('Symfony\Component\DependencyInjection\ContainerBuilder', $container); + $this->assertFalse($container->hasParameter('container_exception')); // Checks the core services $this->assertTrue($container->hasParameter('core')); @@ -54,7 +55,7 @@ namespace $this->assertTrue($container->isFrozen()); // Checks inject_config - $this->assertTrue($container->hasParameter('dbal.dbhost')); + $this->assertTrue($container->hasParameter('core.table_prefix')); // Checks use_extensions $this->assertTrue($container->hasParameter('enabled')); |