Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php')
-rw-r--r--plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
index 2c89da4134..cb55ffecd8 100644
--- a/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
+++ b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
@@ -52,7 +52,7 @@ class AttachedFileReportEmailGeneratorTest extends IntegrationTestCase
$mail = $this->testInstance->makeEmail($generatedReport);
$mailContent = $this->getMailContent($mail);
- $this->assertStringStartsWith('=0A<html', $mail->getBodyHtml()->getContent());
+ $this->assertStringStartsWith('<html', $mail->getBodyHtml()->getContent());
$this->assertEquals('General_Report report - pretty date', $mail->getSubject());
$this->assertContains('ScheduledReports_PleaseFindAttachedFile', $mailContent);
$this->assertContains('ScheduledReports_SentFromX', $mailContent);
@@ -99,7 +99,7 @@ Content-Disposition: inline; filename="General_Report report - pretty date.thing
$mail = $this->testInstance->makeEmail($generatedReport);
$mailContent = $this->getMailContent($mail);
- $this->assertStringStartsWith('=0A<html', $mailContent);
+ $this->assertStringStartsWith('<html', $mailContent);
$this->assertContains('ScheduledReports_PleaseFindAttachedFile', $mailContent);
$this->assertEquals('Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable
@@ -129,7 +129,7 @@ Content-Disposition: inline
$mail = $this->testInstance->makeEmail($generatedReport);
$mailContent = $this->getMailContent($mail);
- $this->assertStringStartsWith('=0A<html', $mailContent);
+ $this->assertStringStartsWith('<html', $mailContent);
$this->assertContains("ScheduledReports_PleaseFindAttachedFile", $mailContent);
$this->assertContains('ScheduledReports_SentFromX=', $mailContent);
$this->assertContains('ScheduledReports_CustomVisitorSegment', $mailContent);