Fix some Coding Standards whitespace violations
authorFlávio Veloso <flaviovs@magnux.com>
Fri, 2 Sep 2016 23:31:59 +0000 (16:31 -0700)
committerFlávio Veloso <flaviovs@magnux.com>
Fri, 2 Sep 2016 23:31:59 +0000 (16:31 -0700)
tests/phpunit/CRM/Contact/BAO/IndividualTest.php

index cbefedfe142853fa21208cbdda4c07ebe4857865..dee2b5555677bfd80e9daf13e78a74338ed568fa 100644 (file)
@@ -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);
   }
+
 }