mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
Merge pull request #3293 from Nicofuma/ticket/13489
[ticket/13489] Disable the event dispatcher in the migrator
This commit is contained in:
@@ -46,7 +46,10 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
|
||||
new \phpbb\db\migration\tool\config($this->config),
|
||||
);
|
||||
|
||||
$container = new phpbb_mock_container_builder();
|
||||
|
||||
$this->migrator = new \phpbb\db\migrator(
|
||||
$container,
|
||||
$this->config,
|
||||
$this->db,
|
||||
$this->db_tools,
|
||||
@@ -57,9 +60,8 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
|
||||
$tools,
|
||||
new \phpbb\db\migration\helper()
|
||||
);
|
||||
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$container->set('migrator', $migrator);
|
||||
$container->set('migrator', $this->migrator);
|
||||
$container->set('dispatcher', new phpbb_mock_event_dispatcher());
|
||||
$user = new \phpbb\user('\phpbb\datetime');
|
||||
|
||||
$this->extension_manager = new \phpbb\extension\manager(
|
||||
|
@@ -156,7 +156,10 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
|
||||
$table_prefix = 'phpbb_';
|
||||
$user = new \phpbb\user('\phpbb\user');
|
||||
|
||||
$container = new phpbb_mock_container_builder();
|
||||
|
||||
$migrator = new \phpbb\db\migrator(
|
||||
$container,
|
||||
$config,
|
||||
$db,
|
||||
$db_tools,
|
||||
@@ -167,7 +170,6 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
|
||||
array(),
|
||||
new \phpbb\db\migration\helper()
|
||||
);
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$container->set('migrator', $migrator);
|
||||
|
||||
return new \phpbb\extension\manager(
|
||||
|
@@ -62,7 +62,10 @@ class phpbb_extension_metadata_manager_test extends phpbb_database_test_case
|
||||
new \phpbb\template\context()
|
||||
);
|
||||
|
||||
$container = new phpbb_mock_container_builder();
|
||||
|
||||
$this->migrator = new \phpbb\db\migrator(
|
||||
$container,
|
||||
$this->config,
|
||||
$this->db,
|
||||
$this->db_tools,
|
||||
@@ -73,7 +76,6 @@ class phpbb_extension_metadata_manager_test extends phpbb_database_test_case
|
||||
array(),
|
||||
new \phpbb\db\migration\helper()
|
||||
);
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$container->set('migrator', $this->migrator);
|
||||
|
||||
$this->extension_manager = new \phpbb\extension\manager(
|
||||
|
@@ -227,7 +227,9 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||
$db = $this->get_db();
|
||||
$db_tools = new \phpbb\db\tools($db);
|
||||
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$migrator = new \phpbb\db\migrator(
|
||||
$container,
|
||||
$config,
|
||||
$db,
|
||||
$db_tools,
|
||||
@@ -238,8 +240,8 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||
array(),
|
||||
new \phpbb\db\migration\helper()
|
||||
);
|
||||
$container = new phpbb_mock_container_builder();
|
||||
$container->set('migrator', $migrator);
|
||||
$container->set('dispatcher', new phpbb_mock_event_dispatcher());
|
||||
$user = new \phpbb\user('\phpbb\datetime');
|
||||
|
||||
$extension_manager = new \phpbb\extension\manager(
|
||||
|
Reference in New Issue
Block a user