Skip to content

Commit aa1b636

Browse files
committed
Fixed test that became wrong after resolving conflicts
1 parent d692654 commit aa1b636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/Magento/Framework/Search/Test/Unit/Request/MapperTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ public function testGetQueryFilterQueryReference($queries): void
250250
Filter::class,
251251
[
252252
'name' => $queryRoot['name'],
253-
'boost' => isset($queryRoot['boost']) ?? 1,
253+
'boost' => $queryRoot['boost'] ?? 1,
254254
'reference' => $this->queryMatch,
255255
'referenceType' => Filter::REFERENCE_QUERY
256256
]
@@ -320,7 +320,7 @@ public function testGetQueryBool($queries): void
320320
BoolExpression::class,
321321
[
322322
'name' => $rootQueries['name'],
323-
'boost' => isset($rootQueries['boost']) ?? 1,
323+
'boost' => $rootQueries['boost'] ?? 1,
324324
'someClause' => ['someQueryMatch' => $this->queryMatch]
325325
]
326326
]

0 commit comments

Comments
 (0)