aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions/user_delete_test.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-10-08 22:07:35 +0200
committerMarc Alexander <admin@m-a-styles.de>2018-10-08 22:07:35 +0200
commitb8c5537948f81d36cedc75d1eaed0c8a2938c980 (patch)
tree4729b08e8ef953346b7293cbe6f18d061500e01e /tests/functions/user_delete_test.php
parent13fe7b3ed22dbaeb2e2c9725ed38740a3b68e10a (diff)
parent0f10c6ff6f0537c9cb00f6007b6bee9944e6587a (diff)
downloadforums-b8c5537948f81d36cedc75d1eaed0c8a2938c980.tar
forums-b8c5537948f81d36cedc75d1eaed0c8a2938c980.tar.gz
forums-b8c5537948f81d36cedc75d1eaed0c8a2938c980.tar.bz2
forums-b8c5537948f81d36cedc75d1eaed0c8a2938c980.tar.xz
forums-b8c5537948f81d36cedc75d1eaed0c8a2938c980.zip
Merge pull request #5343 from senky/ticket/15716
[ticket/15716] Remove OAuth data upon user deletion
Diffstat (limited to 'tests/functions/user_delete_test.php')
-rw-r--r--tests/functions/user_delete_test.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/functions/user_delete_test.php b/tests/functions/user_delete_test.php
index db9b6e0c90..88680d5719 100644
--- a/tests/functions/user_delete_test.php
+++ b/tests/functions/user_delete_test.php
@@ -82,6 +82,10 @@ class phpbb_functions_user_delete_test extends phpbb_database_test_case
$phpbb_container->set('auth.provider.oauth.service.google', $oauth_provider_google);
$phpbb_container->set('auth.provider_collection', $provider_collection);
$phpbb_container->set('notification_manager', $notification_manager);
+
+ $phpbb_container->setParameter('tables.auth_provider_oauth_token_storage', 'phpbb_oauth_tokens');
+ $phpbb_container->setParameter('tables.auth_provider_oauth_states', 'phpbb_oauth_states');
+ $phpbb_container->setParameter('tables.auth_provider_oauth_account_assoc', 'phpbb_oauth_accounts');
}
public function test_user_delete()