From 3630f8dc272de426814b7912ec6cac7ceda86cb3 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 12 Jul 2019 11:53:30 -0700 Subject: [PATCH] (NFC) tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php - Update to current code standard --- tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php b/tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php index e16de58..32cdd17 100644 --- a/tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php +++ b/tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php @@ -33,7 +33,8 @@ public function setUp() { \Civi::settings()->set('flexmailer_traditional', 'flexmailer'); $this->useTransaction(); - \CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; // DGW + // DGW + \CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; $this->_contactID = $this->individualCreate(); $this->_groupID = $this->groupCreate(); $this->_email = 'test@test.test'; @@ -56,7 +57,8 @@ public function setUp() { } public function tearDown() { - \CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; // DGW + // DGW + \CRM_Mailing_BAO_MailingJob::$mailsProcessed = 0; parent::tearDown(); }