aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/profilefields')
-rw-r--r--tests/profilefields/type_dropdown_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/profilefields/type_dropdown_test.php b/tests/profilefields/type_dropdown_test.php
index 5ba17ef120..18d43a3b41 100644
--- a/tests/profilefields/type_dropdown_test.php
+++ b/tests/profilefields/type_dropdown_test.php
@@ -186,13 +186,13 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
'',
array('field_show_novalue' => false),
null,
- 'Field should return correct raw value',
+ 'Field should null for empty value without show_novalue',
),
array(
'',
array('field_show_novalue' => true),
0,
- 'Field should return correct raw value',
+ 'Field should return 0 for empty value with show_novalue',
),
array(
null,
@@ -204,7 +204,7 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
null,
array('field_show_novalue' => true),
0,
- 'Field should return correct raw value',
+ 'Field should return 0 for empty value with show_novalue',
),
);
}