diff options
author | Rubén Calvo <rubencm@gmail.com> | 2018-05-17 02:02:12 +0200 |
---|---|---|
committer | Rubén Calvo <rubencm@gmail.com> | 2018-07-11 09:27:08 +0200 |
commit | b91ce7610bff37a525f4689f43eb50049acf00e2 (patch) | |
tree | d9f0e6400ce622fb265d5ef48c0dff00f26e73b6 /tests/notification | |
parent | [ticket/15342] Add missing services dependencies (diff) | |
download | phpbb-b91ce7610bff37a525f4689f43eb50049acf00e2.tar.gz phpbb-b91ce7610bff37a525f4689f43eb50049acf00e2.tar.bz2 phpbb-b91ce7610bff37a525f4689f43eb50049acf00e2.zip |
[ticket/15342] Fix tests
PHPBB3-15342
Diffstat (limited to 'tests/notification')
-rw-r--r-- | tests/notification/submit_post_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/notification/submit_post_base.php b/tests/notification/submit_post_base.php index d882c106ac..db65c5df07 100644 --- a/tests/notification/submit_post_base.php +++ b/tests/notification/submit_post_base.php @@ -98,7 +98,7 @@ abstract class phpbb_notification_submit_post_base extends phpbb_database_test_c $adapter_factory_mock->expects($this->any()) ->method('get') ->willReturn($adapter); - $storage = new \phpbb\storage\storage($adapter_factory_mock, ''); + $storage = new \phpbb\storage\storage($db, $adapter_factory_mock, '', ''); // User $user = $this->createMock('\phpbb\user', array(), array( |