From: Flávio Veloso Date: Fri, 2 Sep 2016 23:31:59 +0000 (-0700) Subject: Fix some Coding Standards whitespace violations X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=26f87f3ab8f673115359239cc5c89542e079936a;p=civicrm-core.git Fix some Coding Standards whitespace violations --- diff --git a/tests/phpunit/CRM/Contact/BAO/IndividualTest.php b/tests/phpunit/CRM/Contact/BAO/IndividualTest.php index cbefedfe14..dee2b55556 100644 --- a/tests/phpunit/CRM/Contact/BAO/IndividualTest.php +++ b/tests/phpunit/CRM/Contact/BAO/IndividualTest.php @@ -13,9 +13,9 @@ class CRM_Contact_BAO_IndividualTest extends CiviUnitTestCase { */ public function testFormatNullDates() { $params = array( - 'contact_type' => 'Individual', - 'birth_date' => 'null', - 'deceased_date' => 'null', + 'contact_type' => 'Individual', + 'birth_date' => 'null', + 'deceased_date' => 'null', ); $contact = new CRM_Contact_DAO_Contact(); @@ -24,4 +24,5 @@ class CRM_Contact_BAO_IndividualTest extends CiviUnitTestCase { $this->assertEmpty($contact->birth_date); $this->assertEmpty($contact->deceased_date); } + }