From f881c4e646d5ec68b5239812aacdd17cbf5bc68f Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 4 Oct 2016 10:37:59 +0000 Subject: [PATCH] Emoji: Update some failing unit tests. The changes in [38717] weren't reflected in the associated unit tests. See #38113. git-svn-id: https://develop.svn.wordpress.org/trunk@38724 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/formatting/Emoji.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/phpunit/tests/formatting/Emoji.php b/tests/phpunit/tests/formatting/Emoji.php index 80c2b9bebe..b68791199d 100644 --- a/tests/phpunit/tests/formatting/Emoji.php +++ b/tests/phpunit/tests/formatting/Emoji.php @@ -8,8 +8,8 @@ class Tests_Formatting_Emoji extends WP_UnitTestCase { * @ticket 36525 */ public function test_unfiltered_emoji_cdns() { - $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/'; - $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/'; + $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/'; + $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/'; $output = get_echo( '_print_emoji_detection_script' ); @@ -25,8 +25,8 @@ class Tests_Formatting_Emoji extends WP_UnitTestCase { * @ticket 36525 */ public function test_filtered_emoji_svn_cdn() { - $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/'; - $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/'; + $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/'; + $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/'; $filtered_svn_cdn = $this->_filtered_emoji_svn_cdn(); @@ -49,8 +49,8 @@ class Tests_Formatting_Emoji extends WP_UnitTestCase { * @ticket 36525 */ public function test_filtered_emoji_png_cdn() { - $png_cdn = 'https://s.w.org/images/core/emoji/2/72x72/'; - $svn_cdn = 'https://s.w.org/images/core/emoji/2/svg/'; + $png_cdn = 'https://s.w.org/images/core/emoji/2.2.1/72x72/'; + $svn_cdn = 'https://s.w.org/images/core/emoji/2.2.1/svg/'; $filtered_png_cdn = $this->_filtered_emoji_png_cdn();