diff --git a/tests/Unit/Email/EmailTest.php b/tests/Unit/Email/EmailTest.php index 27cbfe6..2f28ef7 100644 --- a/tests/Unit/Email/EmailTest.php +++ b/tests/Unit/Email/EmailTest.php @@ -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()