aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions_privmsgs
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2016-09-15 21:58:21 +0200
committerCrizzo <mail@crizzo.de>2016-09-15 21:58:21 +0200
commit53ead1e926de81c9437767c067d01f6e6ebe68b0 (patch)
treec89b2db7b38cf16a033beb7d602c9b84ab1307db /tests/functions_privmsgs
parentb9761f116dd6a656f764883267dea0ef293fc18c (diff)
downloadforums-53ead1e926de81c9437767c067d01f6e6ebe68b0.tar
forums-53ead1e926de81c9437767c067d01f6e6ebe68b0.tar.gz
forums-53ead1e926de81c9437767c067d01f6e6ebe68b0.tar.bz2
forums-53ead1e926de81c9437767c067d01f6e6ebe68b0.tar.xz
forums-53ead1e926de81c9437767c067d01f6e6ebe68b0.zip
[ticket/14780] Fixes array with exspected results in test-function
PHPBB3-14780
Diffstat (limited to 'tests/functions_privmsgs')
-rw-r--r--tests/functions_privmsgs/get_max_setting_from_group_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functions_privmsgs/get_max_setting_from_group_test.php b/tests/functions_privmsgs/get_max_setting_from_group_test.php
index 3eb7866802..fbabf1222a 100644
--- a/tests/functions_privmsgs/get_max_setting_from_group_test.php
+++ b/tests/functions_privmsgs/get_max_setting_from_group_test.php
@@ -33,12 +33,12 @@ class phpbb_functions_privmsgs_get_max_setting_from_group_test extends phpbb_dat
static public function get_max_setting_from_group_data()
{
return array(
- array(1, 0, 'message_limit'),
+ array(1, 2, 'message_limit'),
array(2, 2, 'message_limit'),
array(3, 0, 'message_limit'),
array(4, 0, 'message_limit'),
array(5, 2, 'message_limit'),
- array(1, 0, 'max_recipients'),
+ array(1, 4, 'max_recipients'),
array(2, 4, 'max_recipients'),
array(3, 0, 'max_recipients'),
array(4, 5, 'max_recipients'),