Skip to content

Commit 0024c50

Browse files
committed
MAGETWO-63945: Add extension point to sales grid indexer
- Fix static
1 parent c7f8fe5 commit 0024c50

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/code/Magento/Sales/Model/ResourceModel/Grid.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ public function __construct(
7070
$this->orderIdField = $orderIdField;
7171
$this->joins = $joins;
7272
$this->columns = $columns;
73-
$this->idListProvider = $idListProvider ?: ObjectManager::getInstance()->get(NotSyncedDataProviderInterface::class);
73+
$this->idListProvider =
74+
$idListProvider ?: ObjectManager::getInstance()->get(NotSyncedDataProviderInterface::class);
7475
parent::__construct($context, $connectionName);
7576
}
7677

app/code/Magento/Sales/Test/Unit/Model/ResourceModel/Provider/NotSyncedDataProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function testGetEmpty()
4545
}
4646

4747
/**
48-
* @covers \Magento\Sales\Model\ResourceModel\Provider\NotSyncedDataProvider::get
48+
* @covers \Magento\Sales\Model\ResourceModel\Provider\NotSyncedDataProvider::getIds
4949
*/
5050
public function testGet()
5151
{

0 commit comments

Comments
 (0)