Skip to content

Commit 1d3f8cd

Browse files
committed
MAGETWO-32953: Fix Bamboo builds
- Fix php fatal error caused by newly introduced tests
1 parent 0fd9616 commit 1d3f8cd

File tree

1 file changed

+2
-2
lines changed
  • dev/tests/unit/testsuite/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate

1 file changed

+2
-2
lines changed

dev/tests/unit/testsuite/Magento/OfflineShipping/Block/Adminhtml/Carrier/Tablerate/GridTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class GridTest extends \PHPUnit_Framework_TestCase
1313
protected $model;
1414

1515
/**
16-
* @var \Magento\Store\Model\StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject
16+
* @var \Magento\Framework\Store\StoreManagerInterface|\PHPUnit_Framework_MockObject_MockObject
1717
*/
1818
protected $storeManagerMock;
1919

@@ -41,7 +41,7 @@ protected function setUp()
4141
{
4242
$objectManager = new \Magento\TestFramework\Helper\ObjectManager($this);
4343

44-
$this->storeManagerMock = $this->getMockBuilder('Magento\Store\Model\StoreManagerInterface')
44+
$this->storeManagerMock = $this->getMockBuilder('Magento\Framework\Store\StoreManagerInterface')
4545
->disableOriginalConstructor()
4646
->getMock();
4747

0 commit comments

Comments
 (0)