diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 11:34:11 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 11:34:11 +0200 |
| commit | 49312f05f88ca58346cbb00c2f03f01fd2a3d56d (patch) | |
| tree | 1db2077dc34caf17f580771bf8967403b6a69660 /tests/privmsgs/delete_user_pms_test.php | |
| parent | a0167ad41037d7fe9214ca36c4c7097177361a6b (diff) | |
| download | forums-49312f05f88ca58346cbb00c2f03f01fd2a3d56d.tar forums-49312f05f88ca58346cbb00c2f03f01fd2a3d56d.tar.gz forums-49312f05f88ca58346cbb00c2f03f01fd2a3d56d.tar.bz2 forums-49312f05f88ca58346cbb00c2f03f01fd2a3d56d.tar.xz forums-49312f05f88ca58346cbb00c2f03f01fd2a3d56d.zip | |
[ticket/14168] Use attachment manager instead of separate classes
PHPBB3-14168
Diffstat (limited to 'tests/privmsgs/delete_user_pms_test.php')
| -rw-r--r-- | tests/privmsgs/delete_user_pms_test.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/privmsgs/delete_user_pms_test.php b/tests/privmsgs/delete_user_pms_test.php index 329c401316..9d6ba7a917 100644 --- a/tests/privmsgs/delete_user_pms_test.php +++ b/tests/privmsgs/delete_user_pms_test.php @@ -91,7 +91,8 @@ class phpbb_privmsgs_delete_user_pms_test extends phpbb_database_test_case $phpbb_container = new phpbb_mock_container_builder(); $phpbb_container->set('notification_manager', new phpbb_mock_notification_manager()); - $phpbb_container->set('attachment.delete', new \phpbb\attachment\delete(new \phpbb\config\config(array()), $db, new \phpbb_mock_event_dispatcher(), new \phpbb\filesystem\filesystem(), new \phpbb\attachment\resync($db), $phpbb_root_path)); + // Works as a workaround for tests + $phpbb_container->set('attachment.manager', new \phpbb\attachment\delete(new \phpbb\config\config(array()), $db, new \phpbb_mock_event_dispatcher(), new \phpbb\filesystem\filesystem(), new \phpbb\attachment\resync($db), $phpbb_root_path)); phpbb_delete_user_pms($delete_user); |
