aboutsummaryrefslogtreecommitdiffstats
path: root/tests/content_visibility
diff options
context:
space:
mode:
authorbrunoais <brunoaiss@gmail.com>2015-01-10 08:32:22 +0000
committerbrunoais <brunoaiss@gmail.com>2015-01-10 08:32:22 +0000
commit349aaab6acd1188298cc06e12d389e90871aafd9 (patch)
tree716ed3beb00547fb2dbba01816f8693b9387ca5e /tests/content_visibility
parentda9ac2da7240def3c929aecdf98ec284be994da1 (diff)
downloadforums-349aaab6acd1188298cc06e12d389e90871aafd9.tar
forums-349aaab6acd1188298cc06e12d389e90871aafd9.tar.gz
forums-349aaab6acd1188298cc06e12d389e90871aafd9.tar.bz2
forums-349aaab6acd1188298cc06e12d389e90871aafd9.tar.xz
forums-349aaab6acd1188298cc06e12d389e90871aafd9.zip
[ticket/13146] Even more missing phpbb_mock_event_dispatcher()
PHPBB3-13146
Diffstat (limited to 'tests/content_visibility')
-rw-r--r--tests/content_visibility/set_post_visibility_test.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/content_visibility/set_post_visibility_test.php b/tests/content_visibility/set_post_visibility_test.php
index d62e7ed60b..36ebf58374 100644
--- a/tests/content_visibility/set_post_visibility_test.php
+++ b/tests/content_visibility/set_post_visibility_test.php
@@ -177,7 +177,8 @@ class phpbb_content_visibility_set_post_visibility_test extends phpbb_database_t
$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 = new phpbb_mock_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_post_visibility(ITEM_DELETED, $post_id, $topic_id, $forum_id, $user_id, $time, $reason, $is_starter, $is_latest);