From: Seamus Lee Date: Tue, 27 Sep 2016 21:53:58 +0000 (+1000) Subject: Enable InvalidID delete on all entites X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=440d95b7d06414a34acbdf2d108fa617411f1032;p=civicrm-core.git Enable InvalidID delete on all entites --- diff --git a/tests/phpunit/api/v3/SyntaxConformanceTest.php b/tests/phpunit/api/v3/SyntaxConformanceTest.php index c32b983005..1381f3e22a 100644 --- a/tests/phpunit/api/v3/SyntaxConformanceTest.php +++ b/tests/phpunit/api/v3/SyntaxConformanceTest.php @@ -1363,10 +1363,6 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase { * @throws \PHPUnit_Framework_IncompleteTestError */ public function testInvalidID_delete($Entity) { - if (in_array($Entity, $this->toBeImplemented['delete'])) { - $this->markTestIncomplete("civicrm_api3_{$Entity}_delete to be implemented"); - return; - } $result = $this->callAPIFailure($Entity, 'Delete', array('id' => 999)); }