1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 16:22:22 +02:00

[ticket/15233] Amend email notification test

PHPBB3-15233
This commit is contained in:
mrgoldy 2020-05-10 15:12:38 +02:00 committed by Marc Alexander
parent d77415dbab
commit 287ebb4771
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -44,6 +44,9 @@ class notification_method_email_test extends phpbb_tests_notification_base
global $db, $config, $user, $auth, $cache, $phpbb_container;
$avatar_helper = $this->getMockBuilder('\phpbb\avatar\helper')
->disableOriginalConstructor()
->getMock();
$db = $this->db = $this->new_dbal();
$config = $this->config = new \phpbb\config\config([
'allow_privmsg' => true,
@ -56,7 +59,7 @@ class notification_method_email_test extends phpbb_tests_notification_base
$lang = new \phpbb\language\language($lang_loader);
$user = new \phpbb\user($lang, '\phpbb\datetime');
$this->user = $user;
$this->user_loader = new \phpbb\user_loader($this->db, $phpbb_root_path, $phpEx, 'phpbb_users');
$this->user_loader = new \phpbb\user_loader($avatar_helper, $this->db, $phpbb_root_path, $phpEx, 'phpbb_users');
$auth = $this->auth = new phpbb_mock_notifications_auth();
$cache_driver = new \phpbb\cache\driver\dummy();
$cache = $this->cache = new \phpbb\cache\service(