aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/notification_test.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-08-17 14:43:17 +0200
committerTristan Darricau <github@nicofuma.fr>2014-08-17 16:19:23 +0200
commitb18fe1203aafb41d8e9e18a776bf415fa060bf4b (patch)
tree5a02491b9dbb08421a594c5651045e4a64073a57 /tests/functional/notification_test.php
parentfe8096753566f4beb708e9070d8789eebdd1e70b (diff)
downloadforums-b18fe1203aafb41d8e9e18a776bf415fa060bf4b.tar
forums-b18fe1203aafb41d8e9e18a776bf415fa060bf4b.tar.gz
forums-b18fe1203aafb41d8e9e18a776bf415fa060bf4b.tar.bz2
forums-b18fe1203aafb41d8e9e18a776bf415fa060bf4b.tar.xz
forums-b18fe1203aafb41d8e9e18a776bf415fa060bf4b.zip
[ticket/12990] Fix unit tests
PHPBB3-12990
Diffstat (limited to 'tests/functional/notification_test.php')
-rw-r--r--tests/functional/notification_test.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/functional/notification_test.php b/tests/functional/notification_test.php
index e4a960f862..667d268b1e 100644
--- a/tests/functional/notification_test.php
+++ b/tests/functional/notification_test.php
@@ -21,20 +21,20 @@ class phpbb_functional_notification_test extends phpbb_functional_test_case
return array(
// Rows inserted by phpBB/install/schemas/schema_data.sql
// Also see PHPBB3-11460
- array('post_notification', true),
- array('topic_notification', true),
- array('post_email', true),
- array('topic_email', true),
+ array('notification.type.post_notification', true),
+ array('notification.type.topic_notification', true),
+ array('notification.type.post_notification.method.email', true),
+ array('notification.type.topic_notification.method.email', true),
// Default behaviour for in-board notifications:
// If user did not opt-out, in-board notifications are on.
- array('bookmark_notification', true),
- array('quote_notification', true),
+ array('notification.type.bookmark_notification', true),
+ array('notification.type.quote_notification', true),
// Default behaviour for email notifications:
// If user did not opt-in, email notifications are off.
- array('bookmark_email', false),
- array('quote_email', false),
+ array('notification.type.bookmark_notification.method.email', false),
+ array('notification.type.quote_notification.method.email', false),
);
}