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/functions_user | |
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/functions_user')
-rw-r--r-- | tests/functions_user/delete_user_test.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/functions_user/delete_user_test.php b/tests/functions_user/delete_user_test.php index 1a5a4f672e..6d2e1fa20a 100644 --- a/tests/functions_user/delete_user_test.php +++ b/tests/functions_user/delete_user_test.php @@ -36,7 +36,8 @@ class phpbb_functions_user_delete_user_test extends phpbb_database_test_case $phpbb_dispatcher = new phpbb_mock_event_dispatcher(); $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($config, $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($config, $db, new \phpbb_mock_event_dispatcher(), new \phpbb\filesystem\filesystem(), new \phpbb\attachment\resync($db), $phpbb_root_path)); $phpbb_container->set( 'auth.provider.db', new phpbb_mock_auth_provider() |