Skip to content

Commit

Permalink
test: fix test after phpmailer change in 5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
carlalexander committed Feb 7, 2022
1 parent fd34967 commit 2017a60
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/Unit/Email/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,11 @@ public function testConstructorRemovesValues()

$this->assertNotSame('', $phpmailer->CharSet);
$this->assertNotSame('', $phpmailer->ContentType);
$this->assertNotSame('', $phpmailer->From);

$email = new Email($this->getEventManagerMock(), 'from_address', $phpmailer);

$this->assertSame('', $phpmailer->CharSet);
$this->assertSame('', $phpmailer->ContentType);
$this->assertSame('', $phpmailer->From);
}

public function testContentTypeHtml()
Expand Down

0 comments on commit 2017a60

Please sign in to comment.