From 8578eeca4c1daac899bc18f427488dd6a9728fc0 Mon Sep 17 00:00:00 2001 From: Joan He <johe@magento.com> Date: Tue, 18 Oct 2016 15:30:16 -0500 Subject: [PATCH] MAGETWO-59444: Create serializer interface and json class in framework - Refactor all the use cases --- .../Magento/Framework/App/Test/Unit/Route/ConfigTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php b/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php index 77dd4479e31..2d30c9ae488 100644 --- a/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php +++ b/lib/internal/Magento/Framework/App/Test/Unit/Route/ConfigTest.php @@ -138,8 +138,8 @@ class ConfigTest extends \PHPUnit_Framework_TestCase ); $this->_cacheMock->expects($this->once()) - ->method('save'); -// ->with(json_encode($routes), 'scope::RoutesConfig'); + ->method('save') + ->with(json_encode($routes), 'scope::RoutesConfig'); $this->assertEquals('routerCode', $this->_config->getRouteByFrontName('routerName', 'scope')); -- GitLab