We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d28ac2 commit 84c0758Copy full SHA for 84c0758
tests/unit/Mage/Core/Model/LayoutTest.php
@@ -100,7 +100,13 @@ public function provideGetBlockSingleton(): Generator
100
$this->getBlockClassesWithSessions(),
101
);
102
103
- foreach ($this->getAllBlockClasses() as $alias => $className) {
+ #$allBlock = $this->getAllBlockClasses();
104
+ $allBlock = [
105
+ 'adminhtml/api_buttons' => \Mage_Adminhtml_Block_Api_Buttons::class,
106
+ 'adminhtml/catalog_category_helper_pricestep' => \Mage_Adminhtml_Block_Catalog_Category_Helper_Pricestep::class,
107
+ ];
108
+
109
+ foreach ($allBlock as $alias => $className) {
110
if (!in_array($className, $ignoredClasses)) {
111
yield $className => [
112
$className,
0 commit comments