Skip to content

Commit 189543e

Browse files
committed
Test fix
1 parent 93c1f46 commit 189543e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MessageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public function testAttachmentManagement(): void
116116

117117
$this->assertCount(1, $message->getAttachments());
118118
$this->assertSame($attachment, $message->getAttachments()[0]);
119-
$this->assertSame(14, $attachment->getSize()); // strlen('binary-content')
119+
$this->assertSame(strlen('binary-content'), $attachment->getSize());
120120
}
121121

122122
public function testFlagManagement(): void

0 commit comments

Comments
 (0)