From 2eca6870b975d9f77cfda42237ac5d8cf32a86d5 Mon Sep 17 00:00:00 2001 From: Ryan McCue Date: Tue, 8 Nov 2016 07:38:40 +0000 Subject: [PATCH] REST API: Remove more emoji from tests. More from [39156]. See #38609. git-svn-id: https://develop.svn.wordpress.org/trunk@39160 602fd350-edb4-49c9-b593-d223f7449a82 --- .../rest-api/rest-attachments-controller.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/phpunit/tests/rest-api/rest-attachments-controller.php b/tests/phpunit/tests/rest-api/rest-attachments-controller.php index ad3746b922..6b2a640c5a 100644 --- a/tests/phpunit/tests/rest-api/rest-attachments-controller.php +++ b/tests/phpunit/tests/rest-api/rest-attachments-controller.php @@ -807,23 +807,23 @@ class WP_Test_REST_Attachments_Controller extends WP_Test_REST_Post_Type_Control array( // Raw values. array( - 'title' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'description' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'caption' => '\o/ ¯\_(ツ)_/¯ 🚢', + 'title' => '\o/ ¯\_(ツ)_/¯', + 'description' => '\o/ ¯\_(ツ)_/¯', + 'caption' => '\o/ ¯\_(ツ)_/¯', ), // Expected returned values. array( 'title' => array( - 'raw' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'rendered' => '\o/ ¯\_(ツ)_/¯ 🚢', + 'raw' => '\o/ ¯\_(ツ)_/¯', + 'rendered' => '\o/ ¯\_(ツ)_/¯', ), 'description' => array( - 'raw' => '\o/ ¯\_(ツ)_/¯ 🚢', - 'rendered' => '

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

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

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

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

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

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

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

', ), ) ),