aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-05-26 17:55:23 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-05-26 19:24:09 +0200
commit3faae5c98cfe9d3b6245a892808aee19bc9c1fcc (patch)
tree897e2c9291ec1d9a760b9bf479e410e3d53e0bc8 /tests/functional
parent401e9466bffb3c312228a99aa6a63a15342fe79b (diff)
downloadforums-3faae5c98cfe9d3b6245a892808aee19bc9c1fcc.tar
forums-3faae5c98cfe9d3b6245a892808aee19bc9c1fcc.tar.gz
forums-3faae5c98cfe9d3b6245a892808aee19bc9c1fcc.tar.bz2
forums-3faae5c98cfe9d3b6245a892808aee19bc9c1fcc.tar.xz
forums-3faae5c98cfe9d3b6245a892808aee19bc9c1fcc.zip
[ticket/11538] Cut functional tests down a bit as these are more expensive.
PHPBB3-11538
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/common_groups_test.php18
1 files changed, 4 insertions, 14 deletions
diff --git a/tests/functional/common_groups_test.php b/tests/functional/common_groups_test.php
index 02a538d46e..7ccd78421e 100644
--- a/tests/functional/common_groups_test.php
+++ b/tests/functional/common_groups_test.php
@@ -17,21 +17,11 @@ abstract class phpbb_functional_common_groups_test extends phpbb_functional_test
public function groups_manage_test_data()
{
return array(
- array('#AA0000', 'WRONG_DATA_COLOUR'),
- array('AA0000', 'GROUP_UPDATED'),
- array('AA0000v', 'WRONG_DATA_COLOUR'),
- array('AA00000', 'WRONG_DATA_COLOUR'),
- array('vAA0000', 'WRONG_DATA_COLOUR'),
- array('AAG000','WRONG_DATA_COLOUR'),
- array('a00', 'GROUP_UPDATED'),
- array('ag0', 'WRONG_DATA_COLOUR'),
- array('#aa0', 'WRONG_DATA_COLOUR'),
- array('AA0000 ', 'GROUP_UPDATED'),
- array('AA0000 abf', 'WRONG_DATA_COLOUR'),
- array('AA0000 AA0000', 'WRONG_DATA_COLOUR'),
array('', 'GROUP_UPDATED'),
- array('000', 'GROUP_UPDATED'),
- array('000000', 'GROUP_UPDATED'),
+ array('aa0000', 'GROUP_UPDATED'),
+
+ array('AAG000','WRONG_DATA_COLOUR'),
+ array('#AA0000', 'WRONG_DATA_COLOUR'),
);
}