diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-26 13:10:13 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-26 13:10:13 -0500 |
commit | 03ff0581e0b6397e3cf194f0b021aae732cfccfd (patch) | |
tree | be9335705e5d985452b477abff18e60a6f9dfbfe /tests/notification/group_request_test.php | |
parent | d6384f89396dc7e8b42c855df2cc1ef49095520b (diff) | |
download | forums-03ff0581e0b6397e3cf194f0b021aae732cfccfd.tar forums-03ff0581e0b6397e3cf194f0b021aae732cfccfd.tar.gz forums-03ff0581e0b6397e3cf194f0b021aae732cfccfd.tar.bz2 forums-03ff0581e0b6397e3cf194f0b021aae732cfccfd.tar.xz forums-03ff0581e0b6397e3cf194f0b021aae732cfccfd.zip |
[ticket/11744] Cleanup
PHPBB3-11744
Diffstat (limited to 'tests/notification/group_request_test.php')
-rw-r--r-- | tests/notification/group_request_test.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/notification/group_request_test.php b/tests/notification/group_request_test.php index 06a5a4baa8..25c5406000 100644 --- a/tests/notification/group_request_test.php +++ b/tests/notification/group_request_test.php @@ -48,6 +48,8 @@ class phpbb_notification_group_request_test extends phpbb_tests_notification_bas $phpbb_dispatcher = new phpbb_mock_event_dispatcher; $phpbb_log = new phpbb_log_null(); + // Now on to the actual test + $this->assertEquals(1, $this->notifications->get_notification_type_id('group_request')); $group_id = false; @@ -56,9 +58,6 @@ class phpbb_notification_group_request_test extends phpbb_tests_notification_bas // Add user 1 as group leader group_user_add($group_id, 2, false, false, false, true, false); - // Add notifications for group requests for user 1 - //$this->notifications->add_subscription('group_request', 0, '', 2); - // Add user 2 as pending group_user_add($group_id, 3, false, false, false, false, true); |