Skip to content

Commit b6996b0

Browse files
committed
ACPT-1263: Fix Catalog failures
1 parent 1faf86d commit b6996b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/Catalog/Model/Layer/Resolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
*/
1919
class Resolver implements ResetAfterRequestInterface
2020
{
21-
const CATALOG_LAYER_CATEGORY = 'category';
22-
const CATALOG_LAYER_SEARCH = 'search';
21+
public const CATALOG_LAYER_CATEGORY = 'category';
22+
public const CATALOG_LAYER_SEARCH = 'search';
2323

2424
/**
2525
* Catalog view layer models list

dev/tests/api-functional/testsuite/Magento/GraphQl/CatalogGraphQl/PriceAttributeOptionsLabelTranslateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,6 @@ public function testValidateAggregateAttributeOptionsInLabelLocaleTranslationFor
201201
}
202202
}
203203

204-
$this->assertEquals( 'Preisansicht', $priceAttributeOptionLabel);
204+
$this->assertEquals('Preisansicht', $priceAttributeOptionLabel);
205205
}
206206
}

0 commit comments

Comments
 (0)