1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-03 23:37:39 +02:00

[ticket/17151] Fix test error

PHPBB3-17151
This commit is contained in:
rxu
2023-09-19 10:23:08 +07:00
parent 72770937f2
commit 9350e82d71

View File

@@ -506,13 +506,14 @@ class phpbb_functions_acp_build_cfg_template_test extends phpbb_test_case
public function select_helper()
{
return build_select(
array(
'1' => 'First_Option',
'2' => 'Second_Option',
'3' => 'Third_Option',
),
'2'
);
return [
'options' => build_select(
[
'1' => 'First_Option',
'2' => 'Second_Option',
'3' => 'Third_Option',
],
'2'),
];
}
}