aboutsummaryrefslogtreecommitdiffstats
path: root/tests/profilefields/type_bool_test.php
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-20 14:47:20 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-20 14:47:20 +0530
commit4472a492da3e61f48241a20a0408ebdc8444a966 (patch)
tree209f77c4b17e63b50935f7870cba3828a1247dda /tests/profilefields/type_bool_test.php
parent3ac73a831a8ddb2a553a92e376452c625e722902 (diff)
downloadforums-4472a492da3e61f48241a20a0408ebdc8444a966.tar
forums-4472a492da3e61f48241a20a0408ebdc8444a966.tar.gz
forums-4472a492da3e61f48241a20a0408ebdc8444a966.tar.bz2
forums-4472a492da3e61f48241a20a0408ebdc8444a966.tar.xz
forums-4472a492da3e61f48241a20a0408ebdc8444a966.zip
[ticket/12514] Fix array formatting for tests
PHPBB3-12514
Diffstat (limited to 'tests/profilefields/type_bool_test.php')
-rw-r--r--tests/profilefields/type_bool_test.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/profilefields/type_bool_test.php b/tests/profilefields/type_bool_test.php
index 03ce9445e1..29c118d57d 100644
--- a/tests/profilefields/type_bool_test.php
+++ b/tests/profilefields/type_bool_test.php
@@ -98,22 +98,22 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
{
return array(
array(
- false,
- array('field_show_novalue' => true),
- 'No',
- 'Field should output the default value',
+ false,
+ array('field_show_novalue' => true),
+ 'No',
+ 'Field should output the default value',
),
array(
- false,
- array('field_show_novalue' => false, 'field_length' => 2),
- null,
- 'Field should not show anything for empty value',
+ false,
+ array('field_show_novalue' => false, 'field_length' => 2),
+ null,
+ 'Field should not show anything for empty value',
),
array(
- 0,
- array(),
- 'Yes',
- 'Field should show the set value',
+ 0,
+ array(),
+ 'Yes',
+ 'Field should show the set value',
),
);
}