From e27f649456207947e06271fbb080002dff08ac28 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sun, 11 Jul 2021 21:49:19 +0200 Subject: [PATCH] ReplyToGetSetClearTest::testAddReplyToInvalidAddressNonIDN(): add additional test case ... which should be handled correctly based on the code. --- test/PHPMailer/ReplyToGetSetClearTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/test/PHPMailer/ReplyToGetSetClearTest.php b/test/PHPMailer/ReplyToGetSetClearTest.php index 9a488cb0..a1d7cf79 100644 --- a/test/PHPMailer/ReplyToGetSetClearTest.php +++ b/test/PHPMailer/ReplyToGetSetClearTest.php @@ -152,6 +152,7 @@ final class ReplyToGetSetClearTest extends PreSendTestCase { return [ 'Invalid domain' => ['a@example..com'], + 'Missing @ sign' => ['example.com'], ]; }