Skip to content

Commit 260306a

Browse files
author
Maxim Medinskiy
committed
MAGETWO-43236: [GITHUB] use return value instead of reference parameter #1818
1 parent 9621f58 commit 260306a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function testPrepareDataSource(
6868
'items' => $dataSourceItems
6969
]
7070
];
71-
$this->model->prepareDataSource($dataSource);
71+
$dataSource = $this->model->prepareDataSource($dataSource);
7272
$this->assertEquals($expectedDataSourceItems, $dataSource['data']['items']);
7373
}
7474

0 commit comments

Comments
 (0)