From 09de34591311610bac77fafd83873337fa11e24a Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Mon, 2 Dec 2019 16:45:54 -0500 Subject: [PATCH] fixing format errors. --- .../CRM/Contribute/Import/Parser/ContributionTest.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php b/tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php index 8182fe9e2e..753f684e71 100644 --- a/tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php +++ b/tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php @@ -180,7 +180,7 @@ class CRM_Contribute_Import_Parser_ContributionTest extends CiviUnitTestCase { } /** - * Test phone is included if it is part of dedupe rule. + * Test phone is included if it is part of dedupe rule. * * @throws \CRM_Core_Exception */ @@ -188,11 +188,11 @@ class CRM_Contribute_Import_Parser_ContributionTest extends CiviUnitTestCase { // Update existing unsupervised rule, change to general. $unsupervisedRuleGroup = $this->callApiSuccess('RuleGroup', 'getsingle', [ 'used' => 'Unsupervised', - 'contact_type' => 'Individual' + 'contact_type' => 'Individual', ]); $this->callApiSuccess('RuleGroup', 'create', [ 'id' => $unsupervisedRuleGroup['id'], - 'used' => 'General' + 'used' => 'General', ]); // Create new unsupervised rule with Phone field. @@ -213,6 +213,7 @@ class CRM_Contribute_Import_Parser_ContributionTest extends CiviUnitTestCase { $fields = CRM_Contribute_BAO_Contribution::importableFields(); $this->assertTrue(array_key_exists('phone', $fields)); } + /** * Run the import parser. * -- 2.25.1