We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cff90 commit 3240036Copy full SHA for 3240036
1 file changed
tests/phpunit/tests/formatting/sanitizeEmail.php
@@ -35,7 +35,6 @@ public function data_sanitized_email_pairs() {
35
'contains no @' => array( 'ab', '' ),
36
'just a TLD' => array( 'abc@com', '' ),
37
'plain' => array( 'abc@example.com', 'abc@example.com' ),
38
- 'invalid utf8 in local' => array( "a\x80b@example.com", '' ),
39
'invalid utf8 subdomain dropped' => array( "abc@sub.\x80.org", 'abc@sub.org' ),
40
'all subdomains invalid utf8' => array( "abc@\x80.org", '' ),
41
);
0 commit comments