aboutsummaryrefslogtreecommitdiffstats
path: root/tests/privmsgs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/privmsgs')
-rw-r--r--tests/privmsgs/delete_user_pms_test.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/privmsgs/delete_user_pms_test.php b/tests/privmsgs/delete_user_pms_test.php
index 7be5429ca3..92ee7c5f2a 100644
--- a/tests/privmsgs/delete_user_pms_test.php
+++ b/tests/privmsgs/delete_user_pms_test.php
@@ -81,10 +81,12 @@ class phpbb_privmsgs_delete_user_pms_test extends phpbb_database_test_case
*/
public function test_delete_user_pms($delete_user, $remaining_privmsgs, $remaining_privmsgs_to)
{
- global $db, $phpbb_notifications;
+ global $db, $phpbb_container;
$db = $this->new_dbal();
- $phpbb_notifications = new phpbb_mock_notification_manager();
+
+ $phpbb_container = new phpbb_mock_container_builder();
+ $phpbb_container->set('notification_manager', new phpbb_mock_notification_manager());
phpbb_delete_user_pms($delete_user);