1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-04 14:47:52 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander 2023-09-30 13:22:46 +02:00
commit 71f04e7337
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -30,7 +30,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
protected function setUp(): void
{
global $phpbb_root_path, $phpEx;
global $phpbb_dispatcher, $phpbb_root_path, $phpEx;
// Mock phpbb_container
$phpbb_container = $this->createMock('Symfony\Component\DependencyInjection\ContainerInterface');
@ -55,6 +55,7 @@ class phpbb_avatar_manager_test extends \phpbb_database_test_case
$imagesize = new \FastImageSize\FastImageSize();
$dispatcher = new phpbb_mock_event_dispatcher();
$phpbb_dispatcher = $dispatcher;
$controller_helper = $this->createMock('\phpbb\controller\helper');