);
$this->_relationshipTypeId = $this->relationshipTypeCreate($params);
$this->_orgContactID = $this->organizationCreate();
- $this->_contributionTypeId = $this->contributionTypeCreate();
+ $this->_financialTypeId = 1;
$this->_membershipTypeName = 'Mickey Mouse Club Member';
$params = array(
'name' => $this->_membershipTypeName,
'member_of_contact_id' => $this->_orgContactID,
'period_type' => 'fixed',
'duration_interval' => 1,
- 'financial_type_id' => $this->_contributionTypeId,
+ 'financial_type_id' => $this->_financialTypeId,
'relationship_type_id' => $this->_relationshipTypeId,
'visibility' => 'Public',
'is_active' => 1,
$this->relationshipTypeDelete($this->_relationshipTypeId);
$this->membershipTypeDelete(array('id' => $this->_membershipTypeID));
$this->membershipStatusDelete($this->_mebershipStatusID);
- $this->contributionTypeDelete(NULL);
$this->contactDelete($this->_contactID);
$this->contactDelete($this->_contactID2);
$this->contactDelete($this->_orgContactID);