public function testTraditionalACLNotFoundTitle() {
$this->_params['title'] = 'n';
$this->setupACL();
+ $this->setPermissionAndRequest('edit groups');
list($groups, $total) = CRM_Group_Page_AJAX::getGroupList();
$this->assertEquals(0, count($groups), 'Returned groups should exclude disabled by default');
$this->assertEquals(0, $total, 'Total needs to be set correctly');
$this->_params['status'] = 2;
$this->_params['title'] = 'n';
$this->setupACL();
+ $this->setPermissionAndRequest('edit groups');
list($groups, $total) = CRM_Group_Page_AJAX::getGroupList();
$this->assertEquals(0, count($groups), 'Returned groups should exclude disabled by default');
$this->assertEquals(0, $total, 'Total needs to be set correctly');