File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Catalog/Test/Unit/CustomerData Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,18 +134,18 @@ public function testGetSectionData()
134134 ->expects ($ this ->once ())
135135 ->method ('create ' )
136136 ->willReturn ($ filterMock );
137- $ searchCritera = $ this ->createMock (SearchCriteria::class);
137+ $ searchCriteria = $ this ->createMock (SearchCriteria::class);
138138 $ this ->searchCriteriaBuilderMock
139139 ->expects ($ this ->once ())
140140 ->method ('addFilters ' )
141141 ->with ([$ filterMock ])
142142 ->willReturnSelf ();
143143 $ this ->searchCriteriaBuilderMock ->expects ($ this ->once ())
144144 ->method ('create ' )
145- ->willReturn ($ searchCritera );
145+ ->willReturn ($ searchCriteria );
146146 $ this ->productRenderRepositoryMock ->expects ($ this ->once ())
147147 ->method ('getList ' )
148- ->with ($ searchCritera , 3 , 'UAH ' )
148+ ->with ($ searchCriteria , 3 , 'UAH ' )
149149 ->willReturn ($ searchResult );
150150 $ searchResult ->expects ($ this ->any ())
151151 ->method ('getItems ' )
You can’t perform that action at this time.
0 commit comments