diff options
Diffstat (limited to 'tests/functional/notification_test.php')
| -rw-r--r-- | tests/functional/notification_test.php | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/tests/functional/notification_test.php b/tests/functional/notification_test.php index ec03f7a6a4..87c36dd4d1 100644 --- a/tests/functional/notification_test.php +++ b/tests/functional/notification_test.php @@ -11,6 +11,8 @@  *  */ +require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php'; +  /**  * @group functional  */ @@ -21,15 +23,15 @@ 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('notification.type.post_notification', true), -			array('notification.type.topic_notification', true), +			array('notification.type.post_notification.method.board', true), +			array('notification.type.topic_notification.method.board', 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('notification.type.bookmark_notification', true), -			array('notification.type.quote_notification', true), +			array('notification.type.bookmark_notification.method.board', true), +			array('notification.type.quote_notification.method.board', true),  			// Default behaviour for email notifications:  			// If user did not opt-in, email notifications are off. | 
