mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
[ticket/17151] Fix test error
PHPBB3-17151
This commit is contained in:
@@ -506,13 +506,14 @@ class phpbb_functions_acp_build_cfg_template_test extends phpbb_test_case
|
|||||||
|
|
||||||
public function select_helper()
|
public function select_helper()
|
||||||
{
|
{
|
||||||
return build_select(
|
return [
|
||||||
array(
|
'options' => build_select(
|
||||||
'1' => 'First_Option',
|
[
|
||||||
'2' => 'Second_Option',
|
'1' => 'First_Option',
|
||||||
'3' => 'Third_Option',
|
'2' => 'Second_Option',
|
||||||
),
|
'3' => 'Third_Option',
|
||||||
'2'
|
],
|
||||||
);
|
'2'),
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user