From 2cd0f8a3957e7b6c9e32005f75e74883f53add9d Mon Sep 17 00:00:00 2001 From: demeritcowboy Date: Wed, 24 Jun 2020 13:57:49 -0400 Subject: [PATCH] fix case-sensitive spelling --- tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php b/tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php index 699815bf2ac0..0b34e9a503ad 100644 --- a/tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php +++ b/tests/phpunit/CRM/Financial/BAO/FinancialAccountTest.php @@ -159,21 +159,21 @@ public function testGetAccountingCode() { * Test getting financial account for a given financial Type with a particular relationship. */ public function testGetFinancialAccountByFinancialTypeAndRelationshipBuiltIn() { - $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Income Account Is')); + $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Income Account is')); } /** * Test getting financial account for a given financial Type with a particular relationship. */ public function testGetFinancialAccountByFinancialTypeAndRelationshipBuiltInRefunded() { - $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Credit/Contra Revenue Account Is')); + $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Credit/Contra Revenue Account is')); } /** * Test getting financial account for a given financial Type with a particular relationship. */ public function testGetFinancialAccountByFinancialTypeAndRelationshipBuiltInChargeBack() { - $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Chargeback Account Is')); + $this->assertEquals(2, CRM_Financial_BAO_FinancialAccount::getFinancialAccountForFinancialTypeByRelationship(2, 'Chargeback Account is')); } /**