From c84101b3287497e696e48a15b885328d5d61af73 Mon Sep 17 00:00:00 2001 From: Olga Kopylova <okopylova@magento.com> Date: Thu, 20 Oct 2016 20:09:57 -0500 Subject: [PATCH] MAGETWO-58693: Refactor Module_Integration, Module_MarketPlace - fixed code style --- app/code/Magento/Integration/Model/Config.php | 2 +- app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/code/Magento/Integration/Model/Config.php b/app/code/Magento/Integration/Model/Config.php index 3cea4d33743..37ed0e7b2fb 100644 --- a/app/code/Magento/Integration/Model/Config.php +++ b/app/code/Magento/Integration/Model/Config.php @@ -15,7 +15,7 @@ use Magento\Integration\Model\Cache\Type; * This is a parent class for storing information about Integrations. * @deprecated */ -class Config +class Config extends ConsolidatedConfig { const CACHE_ID = 'integration'; diff --git a/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php b/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php index 411c81d7547..00b78a47eb4 100644 --- a/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php +++ b/app/code/Magento/Marketplace/Test/Unit/Helper/CacheTest.php @@ -52,7 +52,6 @@ class CacheTest extends \PHPUnit_Framework_TestCase ->with($serializedPartners) ->willReturn($partners); - $this->assertSame($partners, $this->cacheHelper->loadPartnersFromCache()); } -- GitLab