Fix a unit test for the now deprecated function `like_escape()`.

Props miqrogroove.
Fixes #10041.


git-svn-id: https://develop.svn.wordpress.org/trunk@28714 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-06-10 01:21:33 +00:00
parent 4459acb59d
commit cfe11de507
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ class Tests_Formatting_LikeEscape extends WP_UnitTestCase {
$expected = array(
"howdy\\%",
'howdy\\_',
'howdy\\\\',
'howdy\\\\howdy\\%howdy\\_'
'howdy\\',
'howdy\\howdy\\%howdy\\_'
);
foreach ($inputs as $key => $input) {