diff options
Diffstat (limited to 'tests/di')
-rw-r--r-- | tests/di/create_container_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/di/create_container_test.php b/tests/di/create_container_test.php index 8d3dfea780..a3a1ad3597 100644 --- a/tests/di/create_container_test.php +++ b/tests/di/create_container_test.php @@ -19,7 +19,7 @@ namespace $phpbb_root_path = __DIR__ . '/../../phpBB/'; $extensions = array( new \phpbb\di\extension\config(__DIR__ . '/fixtures/config.php'), - new \phpbb\di\extension\core($phpbb_root_path), + new \phpbb\di\extension\core($phpbb_root_path . 'config'), ); $container = phpbb_create_container($extensions, $phpbb_root_path, 'php'); @@ -31,7 +31,7 @@ namespace $phpbb_root_path = __DIR__ . '/../../phpBB/'; $extensions = array( new \phpbb\di\extension\config(__DIR__ . '/fixtures/config.php'), - new \phpbb\di\extension\core($phpbb_root_path), + new \phpbb\di\extension\core($phpbb_root_path . 'config'), ); $container = phpbb_create_install_container($phpbb_root_path, 'php'); @@ -45,7 +45,7 @@ namespace $config_file = __DIR__ . '/fixtures/config.php'; $extensions = array( new \phpbb\di\extension\config(__DIR__ . '/fixtures/config.php'), - new \phpbb\di\extension\core($phpbb_root_path), + new \phpbb\di\extension\core($phpbb_root_path . 'config'), ); $container = phpbb_create_compiled_container($config_file, $extensions, array(), $phpbb_root_path, 'php'); |