diff options
Diffstat (limited to 'tests/settings')
-rw-r--r-- | tests/settings/controller/groupscontrollertest.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/settings/controller/groupscontrollertest.php b/tests/settings/controller/groupscontrollertest.php index 4b6c9d02566..3c15754846c 100644 --- a/tests/settings/controller/groupscontrollertest.php +++ b/tests/settings/controller/groupscontrollertest.php @@ -111,26 +111,26 @@ class GroupsControllerTest extends \Test\TestCase { 0 => array( 'id' => 'admin', 'name' => 'admin', - 'usercount' => 18 + 'usercount' => 0,//User count disabled 18, ) ), 'groups' => array( 0 => array( + 'id' => 'firstGroup', + 'name' => 'firstGroup', + 'usercount' => 0,//User count disabled 12, + ), + 1 => array( 'id' => 'secondGroup', 'name' => 'secondGroup', - 'usercount' => 25 + 'usercount' => 0,//User count disabled 25, ), - 1 => array( + 2 => array( 'id' => 'thirdGroup', 'name' => 'thirdGroup', - 'usercount' => 14 + 'usercount' => 0,//User count disabled 14, ), - 2 => array( - 'id' => 'firstGroup', - 'name' => 'firstGroup', - 'usercount' => 12 - ) ) ) ) |