File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
app/code/Magento/Catalog/Test/Unit/Model/Indexer/Product/Eav/Action Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ public function testExecute()
95
95
$ eavSource ->expects ($ this ->atLeastOnce ())->method ('getConnection ' )->willReturn ($ connectionMock );
96
96
$ eavDecimal ->expects ($ this ->atLeastOnce ())->method ('getConnection ' )->willReturn ($ connectionMock );
97
97
98
-
99
98
$ eavDecimal ->expects ($ this ->once ())
100
99
->method ('reindexEntities ' )
101
100
->with ($ ids );
@@ -124,7 +123,7 @@ public function testExecute()
124
123
$ batchProviderMock = $ this ->getMock (\Magento \Framework \Indexer \BatchProviderInterface::class);
125
124
$ batchProviderMock ->expects ($ this ->atLeastOnce ())
126
125
->method ('getBatches ' )
127
- ->willReturn ([['from ' =>10 , 'to ' => 100 ]]);
126
+ ->willReturn ([['from ' => 10 , 'to ' => 100 ]]);
128
127
$ batchProviderMock ->expects ($ this ->atLeastOnce ())
129
128
->method ('getBatchIds ' )
130
129
->willReturn ($ ids );
@@ -136,7 +135,7 @@ public function testExecute()
136
135
'' ,
137
136
false
138
137
);
139
- $ selectMock = $ this ->getMockBuilder (\Magento \Framework \DB \Select::class)
138
+ $ selectMock = $ this ->getMockBuilder (\Magento \Framework \DB \Select::class)
140
139
->disableOriginalConstructor ()
141
140
->getMock ();
142
141
You can’t perform that action at this time.
0 commit comments