1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 15:05:43 +02:00

[ticket/12334] Improve type_dropdown's test description

PHPBB3-12334
This commit is contained in:
Shitiz Garg 2014-06-27 19:10:23 +05:30
parent 9051248e12
commit 482a22351d

View File

@ -186,13 +186,13 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
'', '',
array('field_show_novalue' => false), array('field_show_novalue' => false),
null, null,
'Field should return correct raw value', 'Field should null for empty value without show_novalue',
), ),
array( array(
'', '',
array('field_show_novalue' => true), array('field_show_novalue' => true),
0, 0,
'Field should return correct raw value', 'Field should return 0 for empty value with show_novalue',
), ),
array( array(
null, null,
@ -204,7 +204,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
null, null,
array('field_show_novalue' => true), array('field_show_novalue' => true),
0, 0,
'Field should return correct raw value', 'Field should return 0 for empty value with show_novalue',
), ),
); );
} }