diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-09 13:43:06 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-12-09 13:43:06 -0600 |
commit | 84284a9ccee7d5ccc658c3d1f751a5254b3b9175 (patch) | |
tree | 7188b647d6b631428e870a3975210960f05e6974 /tests/notification | |
parent | 357a4facf6a5b026c507b54dc8c35b20207e80e0 (diff) | |
download | forums-84284a9ccee7d5ccc658c3d1f751a5254b3b9175.tar forums-84284a9ccee7d5ccc658c3d1f751a5254b3b9175.tar.gz forums-84284a9ccee7d5ccc658c3d1f751a5254b3b9175.tar.bz2 forums-84284a9ccee7d5ccc658c3d1f751a5254b3b9175.tar.xz forums-84284a9ccee7d5ccc658c3d1f751a5254b3b9175.zip |
[ticket/11103] Use scope: prototype
This lets us clean up the mess that was in load_object(), but requires
scope: prototype to be added to the service definitions for all types
or methods!
PHPBB3-11103
Diffstat (limited to 'tests/notification')
-rw-r--r-- | tests/notification/notification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/notification/notification.php b/tests/notification/notification.php index e4522c2cdc..2f2a404216 100644 --- a/tests/notification/notification.php +++ b/tests/notification/notification.php @@ -37,7 +37,7 @@ class phpbb_notification_test extends phpbb_database_test_case 'allow_forum_notify' => true, )); $this->user = new phpbb_mock_user(); - $this->user_loader = new phpbb_user_loader($this->db, 'phpbb_users'); + $this->user_loader = new phpbb_user_loader($this->db, $phpbb_root_path, $phpEx, 'phpbb_users'); $this->auth = new phpbb_mock_notifications_auth(); $this->cache = new phpbb_mock_cache(); |