Skip to content
Snippets Groups Projects
Commit 84943d35 authored by Eileen McNaughton's avatar Eileen McNaughton
Browse files

#2757 test to demonstrate contact delete actions not called for v4 api

parent b878c8a8
No related branches found
No related tags found
No related merge requests found
......@@ -1335,11 +1335,6 @@ class api_v3_RelationshipTest extends CiviUnitTestCase {
]);
$this->callAPISuccessGetCount('membership', ['contact_id' => $this->_cId_a_2], 0);
// @todo - this is actually mimicing an accidental test set up from earlier.
// there is a legit bug whereby apiv4 contact.delete is
// somehow bypassing Membership cleanup.
// https://lab.civicrm.org/dev/core/-/issues/2757
$this->_apiversion = 3;
// Deleting the organization should cause the related membership to be deleted.
$this->callAPISuccess('Contact', 'delete', ['id' => $mainContactID]);
$this->callAPISuccessGetCount('Membership', ['contact_id' => $this->_cId_a], 0);
......@@ -1350,7 +1345,7 @@ class api_v3_RelationshipTest extends CiviUnitTestCase {
*
* @throws \CRM_Core_Exception
*/
public function testRelationshipCreateWithEmployerData() {
public function testRelationshipCreateWithEmployerData(): void {
// CASE A: Create a current employee relationship without setting end date, ensure that employer field is set
$params = [
'relationship_type_id' => '5_a_b',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment