[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
No known key found for this signature in database
GPG key ID: 955F0567380E586A

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'),
];
}
}