aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-04-12 09:56:57 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-04-25 11:52:23 +0200
commit84a77d07be48fcb63f22e7dadefbb4ed0e4e0658 (patch)
tree0295a74b93bf8923515f153958f11629e79196cd
parent8375c3f78909f8926ca48bb9649aa3e1f95bd117 (diff)
downloadforums-84a77d07be48fcb63f22e7dadefbb4ed0e4e0658.tar
forums-84a77d07be48fcb63f22e7dadefbb4ed0e4e0658.tar.gz
forums-84a77d07be48fcb63f22e7dadefbb4ed0e4e0658.tar.bz2
forums-84a77d07be48fcb63f22e7dadefbb4ed0e4e0658.tar.xz
forums-84a77d07be48fcb63f22e7dadefbb4ed0e4e0658.zip
[ticket/12371] We do not group quote notifications anymore
PHPBB3-12371
-rw-r--r--tests/notification/submit_post_type_quote_test.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/notification/submit_post_type_quote_test.php b/tests/notification/submit_post_type_quote_test.php
index a849cb7b1b..9956f3b58e 100644
--- a/tests/notification/submit_post_type_quote_test.php
+++ b/tests/notification/submit_post_type_quote_test.php
@@ -55,7 +55,7 @@ class phpbb_notification_submit_post_type_quote_test extends phpbb_notification_
* 2 => Poster, should NOT receive a notification
* 3 => Quoted, should receive a notification
* 4 => Quoted, but unauthed to read, should NOT receive a notification
- * 5 => Quoted, but already notified, should NOT receive a new notification
+ * 5 => Quoted, but already notified, should STILL receive a new notification
* 6 => Quoted, but option disabled, should NOT receive a notification
* 7 => Quoted, option set to default, should receive a notification
*/
@@ -78,6 +78,7 @@ class phpbb_notification_submit_post_type_quote_test extends phpbb_notification_
array(
array('user_id' => 3, 'item_id' => 2, 'item_parent_id' => 1),
array('user_id' => 5, 'item_id' => 1, 'item_parent_id' => 1),
+ array('user_id' => 5, 'item_id' => 2, 'item_parent_id' => 1),
array('user_id' => 7, 'item_id' => 2, 'item_parent_id' => 1),
),
),