We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928aa13 commit abc6180Copy full SHA for abc6180
1 file changed
test/Service/MailServiceTest.php
@@ -236,7 +236,8 @@ public function testAttachFilesPreservesCustomFilename(): void
236
237
$this->mailService->attachFiles();
238
239
- $body = $this->message->getBody();
+ $body = $this->message->getBody();
240
+ $this->assertInstanceOf(MixedPart::class, $body);
241
$parts = $body->getParts();
242
243
$this->assertCount(2, $parts);
@@ -282,7 +283,8 @@ public function testAttachFilesNoNestedMixedParts(): void
282
283
284
285
286
287
288
289
290
// None of the children should be a MixedPart (no nesting)
0 commit comments