Skip to content
Snippets Groups Projects
Commit 76ae1278 authored by Igor Melnikov's avatar Igor Melnikov
Browse files

MAGETWO-54652: Replace usages of deprecated escaper functions

Fixing unit tests
parent 8a4bd4ad
Branches
No related merge requests found
......@@ -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']]
];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment