From 452e22cd7e7a95420050140adb7baa76be49cfc2 Mon Sep 17 00:00:00 2001 From: eileen Date: Tue, 2 Jul 2019 12:25:45 +1200 Subject: [PATCH] Remove failing assertion This was a 'never worked' as the original call was doing no check. I changed it to do a check but got confused & didn't realise thee check was actually failing when I merged. This check was never successful we should remove it --- tests/phpunit/api/v3/LoggingTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/phpunit/api/v3/LoggingTest.php b/tests/phpunit/api/v3/LoggingTest.php index dd02b41184..79d4f69f65 100644 --- a/tests/phpunit/api/v3/LoggingTest.php +++ b/tests/phpunit/api/v3/LoggingTest.php @@ -346,7 +346,6 @@ class api_v3_LoggingTest extends CiviUnitTestCase { public function testRevertRestrictedTables() { CRM_Core_DAO::executeQuery("SET @uniqueID = 'temp name'"); - $this->assertEquals(TRUE, $this->callAPISuccessGetValue('Setting', ['name' => 'logging_all_tables_uniquid'])); $this->callAPISuccess('Setting', 'create', array('logging' => TRUE)); $contactId = $this->individualCreate(array('address' => array(array('street_address' => '27 Cool way', 'location_type_id' => 1)))); -- 2.25.1