Skip to content

Commit 3c9b29a

Browse files
committed
MC-16113: [Backport for 2.2.x] Signifyd Guarantee Option
- fix options, actions, mass actions rendering
1 parent 6cd3ada commit 3c9b29a

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

app/code/Magento/Sales/Test/Unit/Ui/Component/Listing/Column/ViewActionTest.php

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,28 @@ public function prepareDataSourceDataProvider()
8989
[
9090
['name' => 'itemName', 'config' => []],
9191
[['itemName' => '', 'entity_id' => 1]],
92-
[['itemName' => ['view' => ['href' => 'url', 'label' => __('View'), '__disableTmpl' => true]], 'entity_id' => 1]],
92+
[
93+
[
94+
'itemName' => [
95+
'view' => ['href' => 'url', 'label' => __('View'), '__disableTmpl' => true]
96+
],
97+
'entity_id' => 1
98+
]
99+
],
93100
'#',
94101
['entity_id' => 1]
95102
],
96103
[
97104
['name' => 'itemName', 'config' => ['viewUrlPath' => 'url_path', 'urlEntityParamName' => 'order_id']],
98105
[['itemName' => '', 'entity_id' => 2]],
99-
[['itemName' => ['view' => ['href' => 'url', 'label' => __('View'), '__disableTmpl' => true]], 'entity_id' => 2]],
106+
[
107+
[
108+
'itemName' => [
109+
'view' => ['href' => 'url', 'label' => __('View'), '__disableTmpl' => true]
110+
],
111+
'entity_id' => 2
112+
]
113+
],
100114
'url_path',
101115
['order_id' => 2]
102116
]

0 commit comments

Comments
 (0)