From b5e21241b871d674d3bf25f198ad2e32ee8c71d7 Mon Sep 17 00:00:00 2001
From: Igor Melnikov <imelnikov@magento.com>
Date: Wed, 2 Nov 2016 21:15:52 -0500
Subject: [PATCH] MAGETWO-60353: Replace json_decode in
 \Magento\Framework\ObjectManager\DefinitionFactory::_unpack with
 SerializerInterface

Fixing tests
---
 lib/internal/Magento/Framework/Config/Data/Scoped.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/internal/Magento/Framework/Config/Data/Scoped.php b/lib/internal/Magento/Framework/Config/Data/Scoped.php
index 5e7bd441bbb..0171c97ff1e 100644
--- a/lib/internal/Magento/Framework/Config/Data/Scoped.php
+++ b/lib/internal/Magento/Framework/Config/Data/Scoped.php
@@ -72,7 +72,7 @@ class Scoped extends \Magento\Framework\Config\Data
         $this->_configScope = $configScope;
         $this->_cache = $cache;
         $this->_cacheId = $cacheId;
-        $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class);;
+        $this->serializer = $serializer ?: ObjectManager::getInstance()->get(SerializerInterface::class);
     }
 
     /**
-- 
GitLab