diff options
author | brunoais <brunoaiss@gmail.com> | 2014-12-03 15:10:32 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2014-12-03 15:10:32 +0000 |
commit | 1c02f7e032cf2d28b70739d02edaea7354fcf887 (patch) | |
tree | 258f36f715934cb54171037433fa24663f86d43c /tests/content_visibility/set_topic_visibility_test.php | |
parent | f045744606a945a190728c5ad17350776374a6a9 (diff) | |
download | forums-1c02f7e032cf2d28b70739d02edaea7354fcf887.tar forums-1c02f7e032cf2d28b70739d02edaea7354fcf887.tar.gz forums-1c02f7e032cf2d28b70739d02edaea7354fcf887.tar.bz2 forums-1c02f7e032cf2d28b70739d02edaea7354fcf887.tar.xz forums-1c02f7e032cf2d28b70739d02edaea7354fcf887.zip |
[ticket/13146] Adding required tests modifications for the new constructor
PHPBB3-13146
Diffstat (limited to 'tests/content_visibility/set_topic_visibility_test.php')
-rw-r--r-- | tests/content_visibility/set_topic_visibility_test.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/content_visibility/set_topic_visibility_test.php b/tests/content_visibility/set_topic_visibility_test.php index 4d02a55490..f679b03b82 100644 --- a/tests/content_visibility/set_topic_visibility_test.php +++ b/tests/content_visibility/set_topic_visibility_test.php @@ -90,7 +90,8 @@ class phpbb_content_visibility_set_topic_visibility_test extends phpbb_database_ $auth = $this->getMock('\phpbb\auth\auth'); $user = new \phpbb\user('\phpbb\datetime'); $config = new phpbb\config\config(array()); - $content_visibility = new \phpbb\content_visibility($auth, $config, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE); + $phpbb_dispatcher = $this->getMock('\phpbb\event\dispatcher'); + $content_visibility = new \phpbb\content_visibility($auth, $config, $phpbb_dispatcher, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE); $content_visibility->set_topic_visibility($visibility, $topic_id, $forum_id, $user_id, $time, $reason, $force_update_all); |