Skip to content

Commit

Permalink
[Mailer] [Scaleway] minor fix to comply coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
madbob committed Jan 27, 2024
1 parent 99bea35 commit f252dda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function testSend()
$this->assertSame(['email' => 'saif.gmati@symfony.com', 'name' => 'Saif Eddin'], $body['to'][0]);
$this->assertSame('Hello!', $body['subject']);
$this->assertSame('Hello There!', $body['text']);
$this->assertSame(1, count($body['attachments']));
$this->assertCount(1, $body['attachments']);
$this->assertSame('attachment.txt', $body['attachments'][0]['name']);
$this->assertSame('text/plain', $body['attachments'][0]['type']);
$this->assertSame(base64_encode('some attachment'), $body['attachments'][0]['content']);
Expand Down

0 comments on commit f252dda

Please sign in to comment.