diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2014-06-20 16:01:11 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2014-06-20 16:01:11 +0530 |
commit | 37fd00b2980a1445f58b1771cce5bff17d7a73c4 (patch) | |
tree | 99f9ba4df0c4f019dc9f3c17e2ccac8de068552f | |
parent | eeb2c128f56d6661f236afe2eecae0d832877d53 (diff) | |
download | forums-37fd00b2980a1445f58b1771cce5bff17d7a73c4.tar forums-37fd00b2980a1445f58b1771cce5bff17d7a73c4.tar.gz forums-37fd00b2980a1445f58b1771cce5bff17d7a73c4.tar.bz2 forums-37fd00b2980a1445f58b1771cce5bff17d7a73c4.tar.xz forums-37fd00b2980a1445f58b1771cce5bff17d7a73c4.zip |
[ticket/12738] Add $config to constructor in notification test
PHPBB3-12738
-rw-r--r-- | tests/notification/submit_post_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/notification/submit_post_base.php b/tests/notification/submit_post_base.php index c22c4c5ad2..bd926e2a98 100644 --- a/tests/notification/submit_post_base.php +++ b/tests/notification/submit_post_base.php @@ -100,7 +100,7 @@ abstract class phpbb_notification_submit_post_base extends phpbb_database_test_c // Container $phpbb_container = new phpbb_mock_container_builder(); - $phpbb_container->set('content.visibility', new \phpbb\content_visibility($auth, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE)); + $phpbb_container->set('content.visibility', new \phpbb\content_visibility($auth, $config, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE)); $user_loader = new \phpbb\user_loader($db, $phpbb_root_path, $phpEx, USERS_TABLE); |