aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions_user
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-09-23 10:17:38 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-09 10:18:31 +0200
commit04786313892df25f5adce555ebae6b2e5ad4d222 (patch)
treef02c037a6c853945f384c31169494236172ad4f6 /tests/functions_user
parent8d03b9e001526fb237cdb744dd832c1dd4182d01 (diff)
downloadforums-04786313892df25f5adce555ebae6b2e5ad4d222.tar
forums-04786313892df25f5adce555ebae6b2e5ad4d222.tar.gz
forums-04786313892df25f5adce555ebae6b2e5ad4d222.tar.bz2
forums-04786313892df25f5adce555ebae6b2e5ad4d222.tar.xz
forums-04786313892df25f5adce555ebae6b2e5ad4d222.zip
[ticket/14168] Move phpbb_unlink() into attachment delete class
PHPBB3-14168
Diffstat (limited to 'tests/functions_user')
-rw-r--r--tests/functions_user/delete_user_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functions_user/delete_user_test.php b/tests/functions_user/delete_user_test.php
index b877164629..f28c7286e3 100644
--- a/tests/functions_user/delete_user_test.php
+++ b/tests/functions_user/delete_user_test.php
@@ -25,7 +25,7 @@ class phpbb_functions_user_delete_user_test extends phpbb_database_test_case
{
parent::setUp();
- global $cache, $config, $db, $phpbb_dispatcher, $phpbb_container;
+ global $cache, $config, $db, $phpbb_dispatcher, $phpbb_container, $phpbb_root_path;
$db = $this->db = $this->new_dbal();
$config = new \phpbb\config\config(array(
@@ -36,7 +36,7 @@ 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\attachment\resync($db)));
+ $phpbb_container->set('attachment.delete', new \phpbb\attachment\delete($config, $db, new \phpbb\filesystem\filesystem(), new \phpbb\attachment\resync($db), $phpbb_root_path));
$phpbb_container->set(
'auth.provider.db',
new phpbb_mock_auth_provider()