diff --git a/test/MessageTest.php b/test/MessageTest.php
index ff1f931..d0b96b6 100644
--- a/test/MessageTest.php
+++ b/test/MessageTest.php
@@ -245,11 +245,7 @@ public function testDecodeMultipartMimeMessageWithMessagePartAlternatives()
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
-
This is a test email with 1 attachment.
<=
-div>
--
-
+This is a test email with 1 attachment.
--001a11447dc881e40b0537fe6d58--
@@ -380,10 +376,7 @@ public function testDecodeMultipartMimeMessageWithMessagePartAlternatives()
$this->assertTrue($headers->has('Content-Transfer-Encoding'));
$this->assertSame("quoted-printable", $headers->get('Content-Transfer-Encoding')->getFieldValue());
- $htmlBody = <<This is a test email with 1 attachment.
--
-
-EOF;
+ $htmlBody = "This is a test email with 1 attachment.
";
$this->assertSame($htmlBody, trim($htmlPart->getRawContent()));
$this->assertInstanceOf(Part::class, $parts[1]);