From 76ae12782a43a05ab889416435075f037856c020 Mon Sep 17 00:00:00 2001 From: Igor Melnikov <imelnikov@ebay.com> Date: Tue, 12 Jul 2016 17:24:39 -0500 Subject: [PATCH] MAGETWO-54652: Replace usages of deprecated escaper functions Fixing unit tests --- app/code/Magento/Payment/Test/Unit/Block/InfoTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php b/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php index 913f570410a..cd79c92c354 100644 --- a/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php +++ b/app/code/Magento/Payment/Test/Unit/Block/InfoTest.php @@ -155,7 +155,7 @@ class InfoTest extends \PHPUnit_Framework_TestCase [[], false, []], ['string', true, [0 => 'string']], ['string', false, ['string']], - [['key' => 'v"a!@#%$%^^&&*(*/\'\]l'], true, ['key' => 'v"a!@#%$%^^&&*(*/\'\]l']], + [['key' => 'v"a!@#%$%^^&&*(*/\'\]l'], true, ['key' => 'v"a!@#%$%^^&&*(*/'\]l']], [['key' => 'val'], false, ['key' => 'val']] ]; } -- GitLab