INFRA-132 - tests/ - phpcbf
[civicrm-core.git] / tests / phpunit / CRM / Contribute / BAO / ContributionPageTest.php
index 24d44749f2e471c7220b46bd56d81cf8b04e580f..f95bdc7385cbbd1e8ca774a653ac97ca446ce73d 100644 (file)
@@ -69,7 +69,6 @@ class CRM_Contribute_BAO_ContributionPageTest extends CiviUnitTestCase {
       'is_credit_card_only' => '',
     );
 
-
     $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
 
     $this->assertNotNull($contributionpage->id);
@@ -92,7 +91,7 @@ class CRM_Contribute_BAO_ContributionPageTest extends CiviUnitTestCase {
     $id               = $contributionpage->id;
     $is_active        = 1;
     $pageActive       = CRM_Contribute_BAO_ContributionPage::setIsActive($id, $is_active);
-    $this->assertEquals($pageActive, true, 'Verify financial types record deletion.');
+    $this->assertEquals($pageActive, TRUE, 'Verify financial types record deletion.');
     ContributionPage::delete($contributionpage->id);
   }
 
@@ -142,7 +141,6 @@ class CRM_Contribute_BAO_ContributionPageTest extends CiviUnitTestCase {
       'is_credit_card_only' => '',
     );
 
-
     $contributionpage = CRM_Contribute_BAO_ContributionPage::create($params);
     $copycontributionpage = CRM_Contribute_BAO_ContributionPage::copy($contributionpage->id);
     $this->assertEquals($copycontributionpage->financial_type_id, $this->_financialTypeID, 'Check for Financial type id.');