diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:37:25 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 17:45:56 -0500 |
commit | c870b9f43be073a766e4380857415e011b5ed7ef (patch) | |
tree | 9c5e3ccfcc7606069c8b05d4dfd2f20b67a87f83 /tests/notification/submit_post_base.php | |
parent | e5d032ca2112ba2c6156718b3fe42128e444a6fd (diff) | |
download | forums-c870b9f43be073a766e4380857415e011b5ed7ef.tar forums-c870b9f43be073a766e4380857415e011b5ed7ef.tar.gz forums-c870b9f43be073a766e4380857415e011b5ed7ef.tar.bz2 forums-c870b9f43be073a766e4380857415e011b5ed7ef.tar.xz forums-c870b9f43be073a766e4380857415e011b5ed7ef.zip |
[ticket/11335] (more tests) Make php_ext 'php' not '.php'
PHPBB3-11335
Diffstat (limited to 'tests/notification/submit_post_base.php')
-rw-r--r-- | tests/notification/submit_post_base.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/notification/submit_post_base.php b/tests/notification/submit_post_base.php index c5b2450e1c..953bedac80 100644 --- a/tests/notification/submit_post_base.php +++ b/tests/notification/submit_post_base.php @@ -92,12 +92,12 @@ class phpbb_notification_submit_post_base extends phpbb_database_test_case // Container $phpbb_container = new phpbb_mock_container_builder(); - $user_loader = new phpbb_user_loader($db, $phpbb_root_path, '.' . $phpEx, USERS_TABLE); + $user_loader = new phpbb_user_loader($db, $phpbb_root_path, $phpEx, USERS_TABLE); // Notification Manager $phpbb_notifications = new phpbb_notification_manager(array(), array(), $phpbb_container, $user_loader, $db, $user, - $phpbb_root_path, '.' . $phpEx, + $phpbb_root_path, $phpEx, NOTIFICATION_TYPES_TABLE, NOTIFICATIONS_TABLE, USER_NOTIFICATIONS_TABLE); $phpbb_container->set('notification_manager', $phpbb_notifications); @@ -108,7 +108,7 @@ class phpbb_notification_submit_post_base extends phpbb_database_test_case $class_name = 'phpbb_notification_type_' . $type; $phpbb_container->set('notification.type.' . $type, new $class_name( $user_loader, $db, $cache, $user, $auth, $config, - $phpbb_root_path, '.' . $phpEx, + $phpbb_root_path, $phpEx, NOTIFICATION_TYPES_TABLE, NOTIFICATIONS_TABLE, USER_NOTIFICATIONS_TABLE)); } } |