diff --git a/tests/phpunit/tests/rest-api/rest-posts-controller.php b/tests/phpunit/tests/rest-api/rest-posts-controller.php index c1b46bd521..57d5deb10d 100644 --- a/tests/phpunit/tests/rest-api/rest-posts-controller.php +++ b/tests/phpunit/tests/rest-api/rest-posts-controller.php @@ -2065,23 +2065,23 @@ class WP_Test_REST_Posts_Controller extends WP_Test_REST_Post_Type_Controller_Te array( // Raw values. array( - 'title' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'content' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'excerpt' => '\o/ ¯\_(ツ)_/¯ 🚢', + 'title' => '\o/ ¯\_(ツ)_/¯', + 'content' => '\o/ ¯\_(ツ)_/¯', + 'excerpt' => '\o/ ¯\_(ツ)_/¯', ), // Expected returned values. array( 'title' => array( - 'raw' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'rendered' => '\o/ ¯\_(ツ)_/¯ 🚢', + 'raw' => '\o/ ¯\_(ツ)_/¯', + 'rendered' => '\o/ ¯\_(ツ)_/¯', ), 'content' => array( - 'raw' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'rendered' => '

\o/ ¯\_(ツ)_/¯ 🚢

', + 'raw' => '\o/ ¯\_(ツ)_/¯', + 'rendered' => '

\o/ ¯\_(ツ)_/¯

', ), 'excerpt' => array( - 'raw' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'rendered' => '

\o/ ¯\_(ツ)_/¯ 🚢

', + 'raw' => '\o/ ¯\_(ツ)_/¯', + 'rendered' => '

\o/ ¯\_(ツ)_/¯

', ), ) ),