From 1a50b2948f9a9026bd29620df78d6bd3046e5799 Mon Sep 17 00:00:00 2001 From: Prateek Banga Date: Wed, 27 Sep 2023 19:10:56 +0530 Subject: [PATCH] lint fix --- tests/e2e/Services/Messaging/MessagingBase.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/e2e/Services/Messaging/MessagingBase.php b/tests/e2e/Services/Messaging/MessagingBase.php index 5654f01257..97a5ad7d1d 100644 --- a/tests/e2e/Services/Messaging/MessagingBase.php +++ b/tests/e2e/Services/Messaging/MessagingBase.php @@ -370,7 +370,7 @@ trait MessagingBase public function testSendEmail() { - + $to = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MAILGUN_RECEIVER_EMAIL'); $from = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MAILGUN_FROM'); $apiKey = App::getEnv('_APP_MESSAGE_SMS_PROVIDER_MAILGUN_API_KEY'); @@ -460,6 +460,5 @@ trait MessagingBase ]); $this->assertEquals(201, $email['headers']['status-code']); - } }