Skip to content

Commit 1b569cb

Browse files
author
Oleksii Korshenko
committed
Merge pull request #13204 into #13189
2 parents 07a188d + 1684f07 commit 1b569cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Catalog/Test/Unit/CustomerData/ProductsRenderInfoSectionTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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')

0 commit comments

Comments
 (0)