From b3b5e328f91181363cfe8259ace7ec628caa19d4 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 5 Oct 2025 21:52:57 +0200 Subject: [PATCH] [ticket/17555] Properly mock version helper return PHPBB-17555 --- tests/console/update/check_test.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/console/update/check_test.php b/tests/console/update/check_test.php index 5768808464..a00b49f0d1 100644 --- a/tests/console/update/check_test.php +++ b/tests/console/update/check_test.php @@ -109,9 +109,10 @@ class phpbb_console_command_check_test extends phpbb_test_case { return [ [ - 'version' => '100000', - 'stability' => 'stable', - 'download_url' => 'https://www.phpbb.com/downloads/', + 'current' => '100000', + 'announcement' => 'https://www.phpbb.com/downloads/', + 'eol' => null, + 'security' => false, ], ]; }