File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/code/Magento/Checkout/Test/Unit/Block/Checkout Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class DirectoryDataProcessorTest extends \PHPUnit_Framework_TestCase
35
35
/**
36
36
* @var \PHPUnit_Framework_MockObject_MockObject
37
37
*/
38
- protected $ storeResolverMock ;
38
+ protected $ storeManagerMock ;
39
39
40
40
/**
41
41
* @var \PHPUnit_Framework_MockObject_MockObject
@@ -72,8 +72,8 @@ protected function setUp()
72
72
'' ,
73
73
false
74
74
);
75
- $ this ->storeResolverMock = $ this ->getMock (
76
- \Magento \Store \Api \StoreResolverInterface ::class
75
+ $ this ->storeManagerMock = $ this ->getMock (
76
+ \Magento \Store \Model \StoreManagerInterface ::class
77
77
);
78
78
$ this ->directoryDataHelperMock = $ this ->getMock (
79
79
\Magento \Directory \Helper \Data::class,
@@ -86,7 +86,7 @@ protected function setUp()
86
86
$ this ->model = new \Magento \Checkout \Block \Checkout \DirectoryDataProcessor (
87
87
$ this ->countryCollectionFactoryMock ,
88
88
$ this ->regionCollectionFactoryMock ,
89
- $ this ->storeResolverMock ,
89
+ $ this ->storeManagerMock ,
90
90
$ this ->directoryDataHelperMock
91
91
);
92
92
}
You can’t perform that action at this time.
0 commit comments