diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-27 19:10:23 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-27 19:10:23 +0530 |
commit | 482a22351d08a31b3aa81008e67c994268f8fac5 (patch) | |
tree | b962bfe2380a88a6daf58e4b8f097cfacb676d4e /tests/profilefields | |
parent | [ticket/12334] Group profile fields test (diff) | |
download | phpbb-482a22351d08a31b3aa81008e67c994268f8fac5.tar.gz phpbb-482a22351d08a31b3aa81008e67c994268f8fac5.tar.bz2 phpbb-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.php | 6 |
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', ), ); } |