Skip to content

Commit 181fbaa

Browse files
author
Maxim Medinskiy
committed
MAGETWO-33076: Prepare pull request
- fixed merge conflicts
1 parent 5f9c32d commit 181fbaa

File tree

2 files changed

+3
-3
lines changed
  • app/code/Magento/Catalog/Model/Product/Image
  • dev/tests/unit/testsuite/Magento/Catalog/Model/Product/Image

2 files changed

+3
-3
lines changed

app/code/Magento/Catalog/Model/Product/Image/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
use Magento\Catalog\Helper\Image as ImageHelper;
99
use Magento\Catalog\Model\Product;
10-
use Magento\Core\Model\Resource\Theme\Collection as ThemeCollection;
10+
use Magento\Theme\Model\Resource\Theme\Collection as ThemeCollection;
1111
use Magento\Framework\App\Area;
1212
use Magento\Framework\View\ConfigInterface;
1313

dev/tests/unit/testsuite/Magento/Catalog/Model/Product/Image/CacheTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class CacheTest extends \PHPUnit_Framework_TestCase
3636
protected $config;
3737

3838
/**
39-
* @var \Magento\Core\Model\Resource\Theme\Collection|\PHPUnit_Framework_MockObject_MockObject
39+
* @var \Magento\Theme\Model\Resource\Theme\Collection|\PHPUnit_Framework_MockObject_MockObject
4040
*/
4141
protected $themeCollection;
4242

@@ -63,7 +63,7 @@ protected function setUp()
6363
->disableOriginalConstructor()
6464
->getMock();
6565

66-
$this->themeCollection = $this->getMockBuilder('Magento\Core\Model\Resource\Theme\Collection')
66+
$this->themeCollection = $this->getMockBuilder('Magento\Theme\Model\Resource\Theme\Collection')
6767
->disableOriginalConstructor()
6868
->getMock();
6969

0 commit comments

Comments
 (0)