File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
app/code/Magento/Backend/Block/Widget/Grid/Column
dev/tests/static/testsuite/Magento/Test/Legacy Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,15 @@ class Multistore extends \Magento\Backend\Block\Widget\Grid\Column
17
17
/**
18
18
* @param \Magento\Backend\Block\Template\Context $context
19
19
* @param array $data
20
+ * @param array $additionalRendererTypes
20
21
*/
21
- public function __construct (\Magento \Backend \Block \Template \Context $ context , array $ data = [])
22
- {
22
+ public function __construct (
23
+ \Magento \Backend \Block \Template \Context $ context ,
24
+ array $ data = [],
25
+ array $ additionalRendererTypes = []
26
+ ) {
23
27
parent ::__construct ($ context , $ data );
28
+ $ this ->_rendererTypes = array_merge ($ this ->_rendererTypes , $ additionalRendererTypes );
24
29
}
25
30
26
31
/**
Original file line number Diff line number Diff line change 4
4
* See COPYING.txt for license details.
5
5
*/
6
6
7
- /**
8
- * Coverage of obsolete nodes in layout
9
- */
10
7
namespace Magento \Test \Legacy ;
11
8
12
9
use Magento \Framework \Component \ComponentRegistrar ;
13
10
11
+ /**
12
+ * Coverage of obsolete nodes in layout
13
+ */
14
14
class LayoutTest extends \PHPUnit \Framework \TestCase
15
15
{
16
16
/**
@@ -356,8 +356,6 @@ public function getAllowedActionNodeMethods()
356
356
'unsetChildren ' ,
357
357
'updateButton ' ,
358
358
'setIsProductListingContext ' ,
359
- 'checkCompanyStatus ' , // MAGETWO-88965
360
- 'setRendererType ' , // MAGETWO-88965
361
359
];
362
360
}
363
361
}
You can’t perform that action at this time.
0 commit comments