diff --git tests/phpunit/tests/user.php tests/phpunit/tests/user.php
index 8a3c59eeb4..b5586bf190 100644
|
|
class Tests_User extends WP_UnitTestCase { |
705 | 705 | } |
706 | 706 | } |
707 | 707 | |
| 708 | /** |
| 709 | * @ticket 28163 |
| 710 | */ |
| 711 | public function test_email_exists_umlaut() { |
| 712 | $id = wp_insert_user( |
| 713 | array( |
| 714 | 'user_login' => 'umlautuser', |
| 715 | 'user_pass' => 'password', |
| 716 | 'user_email' => 'ümlautüser@ümlautdomain.com', |
| 717 | ) |
| 718 | ); |
| 719 | $this->assertEquals( $id, email_exists( 'mlautser@mlautdomain.com' ) ); |
| 720 | } |
| 721 | |
708 | 722 | /** |
709 | 723 | * @ticket 27317 |
710 | 724 | * @dataProvider data_illegal_user_logins |