From b4a1a0e5a668ae418aac646ce555edd3f2cb9d96 Mon Sep 17 00:00:00 2001 From: Arnt Gulbrandsen Date: Sun, 15 Sep 2024 22:03:00 +0200 Subject: [PATCH] Regularise a test. (#389) The validEmailsProvider contained n-1 valid email addresses and 1 domain; this replaces the domain with two valid email addresses in that domain, so that all entries match the name. --- tests/EmailValidator/Validation/DNSCheckValidationTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/EmailValidator/Validation/DNSCheckValidationTest.php b/tests/EmailValidator/Validation/DNSCheckValidationTest.php index 6f57584..ab82e29 100644 --- a/tests/EmailValidator/Validation/DNSCheckValidationTest.php +++ b/tests/EmailValidator/Validation/DNSCheckValidationTest.php @@ -32,8 +32,9 @@ public static function validEmailsProvider() ['"Fred\ Bloggs"@ietf.org'], ['"Joe.\\Blow"@ietf.org'], - // unicide - ['ñandu.cl'], + // unicode + ['info@ñandu.cl'], + ['ñandu@ñandu.cl'], ]; }