aboutsummaryrefslogtreecommitdiffstats
path: root/tests/profilefields
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-27 19:10:23 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-27 19:10:23 +0530
commit482a22351d08a31b3aa81008e67c994268f8fac5 (patch)
treeb962bfe2380a88a6daf58e4b8f097cfacb676d4e /tests/profilefields
parent9051248e12f8d25f0632b3f3e89738a497a6619b (diff)
downloadforums-482a22351d08a31b3aa81008e67c994268f8fac5.tar
forums-482a22351d08a31b3aa81008e67c994268f8fac5.tar.gz
forums-482a22351d08a31b3aa81008e67c994268f8fac5.tar.bz2
forums-482a22351d08a31b3aa81008e67c994268f8fac5.tar.xz
forums-482a22351d08a31b3aa81008e67c994268f8fac5.zip
[ticket/12334] Improve type_dropdown's test description
PHPBB3-12334
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',
),
);
}