diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-07-28 18:13:44 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-07-28 18:13:44 +0200 |
commit | 7d4b019266c20da2e9677829b0dd0a7f7d740833 (patch) | |
tree | ea4fb80013ae3f16658f5d28822dead1ddb3de6e /tests/extension | |
parent | 1095086cde8f76932119f4bfe853bcfbc724317e (diff) | |
parent | e992eab4c3f39d22acacac70c95c62b942ca36ff (diff) | |
download | forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.gz forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.bz2 forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.tar.xz forums-7d4b019266c20da2e9677829b0dd0a7f7d740833.zip |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[ticket/12870] Add doc block
[ticket/12870] Create the migrations table with a method in the migrator
[ticket/12870] Add $config['version'] in phpbb_extension_manager_test
[ticket/12870] Create the migrations table in db:migrate
Diffstat (limited to 'tests/extension')
-rw-r--r-- | tests/extension/manager_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extension/manager_test.php b/tests/extension/manager_test.php index 230c90c7c7..067fd62581 100644 --- a/tests/extension/manager_test.php +++ b/tests/extension/manager_test.php @@ -135,7 +135,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case protected function create_extension_manager($with_cache = true) { - $config = new \phpbb\config\config(array()); + $config = new \phpbb\config\config(array('version' => PHPBB_VERSION)); $db = $this->new_dbal(); $db_tools = new \phpbb\db\tools($db); $phpbb_root_path = __DIR__ . './../../phpBB/'; |