mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17151] Fix test error
PHPBB3-17151
This commit is contained in:
parent
72770937f2
commit
9350e82d71
1 changed files with 9 additions and 8 deletions
|
@ -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'),
|
||||||
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue