1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 10:44:20 +02:00

[ticket/17135] Fix rebasing issues

PHPBB-17135
This commit is contained in:
rxu
2024-06-05 10:16:05 +07:00
parent 068987eba6
commit 51fae82718
4 changed files with 11 additions and 2 deletions

View File

@@ -124,7 +124,7 @@ class phpbb_email_parsing_test extends phpbb_test_case
$phpbb_container->set('messenger.queue', $messenger_queue);
$this->email = new \phpbb\messenger\method\phpbb_email(
$config, $dispatcher, $lang, $log, $request, $user, $messenger_queue,
$assets_bag, $config, $dispatcher, $lang, $log, $request, $user, $messenger_queue,
$phpbb_path_helper, $extension_manager, $twig_extensions_collection, $twig_lexer,
$cache_path, $phpbb_root_path
);

View File

@@ -180,7 +180,7 @@ class notification_method_webpush_test extends phpbb_tests_notification_base
$phpbb_root_path,
$phpEx,
$phpbb_container->getParameter('tables.notification_push'),
$phpbb_container->getParameter('tables.push_subscriptions')
$phpbb_container->getParameter('tables.push_subscriptions'),
);
$phpbb_container->set('notification.method.webpush', $this->notification_method_webpush);