From c9774eac694760c88bf75bcc03f1538123d494ad Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Mon, 20 Apr 2015 10:10:53 +0000 Subject: [PATCH] Unit Tests: The `get_smilies_combinations` test was failing when the tests were run with a non-default domain. Props netweb. Fixes #32025. git-svn-id: https://develop.svn.wordpress.org/trunk@32178 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/formatting/Smilies.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/tests/formatting/Smilies.php b/tests/phpunit/tests/formatting/Smilies.php index 3a4c60492b..ff38c6e5bb 100644 --- a/tests/phpunit/tests/formatting/Smilies.php +++ b/tests/phpunit/tests/formatting/Smilies.php @@ -169,7 +169,7 @@ class Tests_Formatting_Smilies extends WP_UnitTestCase { return array ( array ( '8-O :-(', - "\xf0\x9f\x98\xaf \":-(\"" + "\xf0\x9f\x98\xaf \":-(\"" ), array ( '8-) 8-O', @@ -181,7 +181,7 @@ class Tests_Formatting_Smilies extends WP_UnitTestCase { ), array ( '8-) :-(', - "\xf0\x9f\x98\x8e \":-(\"" + "\xf0\x9f\x98\x8e \":-(\"" ), array ( '8-) :twisted:', @@ -189,7 +189,7 @@ class Tests_Formatting_Smilies extends WP_UnitTestCase { ), array ( '8O :twisted: :( :? :(', - "\xf0\x9f\x98\xaf \xf0\x9f\x98\x88 \":(\" \xf0\x9f\x98\x95 \":(\"" + "\xf0\x9f\x98\xaf \xf0\x9f\x98\x88 \":(\" \xf0\x9f\x98\x95 \":(\"" ), ); }