From b554928e83f13919c36a13c0de01d419a95a5352 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 23 Jul 2020 18:21:13 +0000 Subject: [PATCH] Tests: Update the `es_ES` string used in `wp_send_user_request()` tests to match the current translation. Props a2hosting. Fixes #50741. git-svn-id: https://develop.svn.wordpress.org/trunk@48581 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/data/languages/es_ES.mo | Bin 1027 -> 1006 bytes tests/phpunit/data/languages/es_ES.po | 6 +++--- .../phpunit/tests/user/wpSendUserRequest.php | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/phpunit/data/languages/es_ES.mo b/tests/phpunit/data/languages/es_ES.mo index bd56b36d4c6cbe5ea010577f06ffbf07853a1b54..2f949bcf6a819540650012dbb6144ea56f601e10 100644 GIT binary patch delta 115 zcmZqXc*i~=#Z{J(f#D($`!Fytyk}xy5C_sW%nS^QKsp3Ss{rXTAgv0dX9H z^8o3)KpKb`UTs`y!^mf3ple{RYh$AgutTvw*Y;knRT3sz7=Jkd_A0*MKw+ zkp2Xufr#P%#+5dVe1?{~2FAKZ77B)zRwl-iKQqo}HqtYkJekQ-IKV$d*SRP)u_QA; UPuC@}B-Kh`@@b|SlT(assertContains( 'Confirma la', $mailer->get_sent()->subject ); + $this->assertContains( 'Confirmar la', $mailer->get_sent()->subject ); } /** @@ -336,7 +336,7 @@ class Tests_User_WpSendUserRequest extends WP_UnitTestCase { wp_send_user_request( $request_id ); $mailer = tests_retrieve_phpmailer_instance(); - $this->assertContains( 'Confirma la', $mailer->get_sent()->subject ); + $this->assertContains( 'Confirmar la', $mailer->get_sent()->subject ); } /** @@ -401,6 +401,6 @@ class Tests_User_WpSendUserRequest extends WP_UnitTestCase { wp_send_user_request( $request_id ); $mailer = tests_retrieve_phpmailer_instance(); - $this->assertContains( 'Confirma la', $mailer->get_sent()->subject ); + $this->assertContains( 'Confirmar la', $mailer->get_sent()->subject ); } }