Skip to content

Commit 02e4bf3

Browse files
author
Stanislav Idolov
authored
Fixed code style issue
1 parent 1583f8d commit 02e4bf3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/Catalog/Test/Unit/Cron/DeleteOutdatedPriceValuesTest.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ public function testExecute()
103103
$this->attributeMock->expects($this->once())->method('getId')->willReturn($attributeId);
104104
$this->attributeMock->expects($this->once())->method('getBackend')->willReturn($this->attributeBackendMock);
105105
$this->attributeBackendMock->expects($this->once())->method('getTable')->willReturn($table);
106-
$this->resourceConnectionMock->expects($this->once())->method('getConnection')->willReturn($this->dbAdapterMock);
106+
$this->resourceConnectionMock->expects($this->once())
107+
->method('getConnection')
108+
->willReturn($this->dbAdapterMock);
107109
$this->dbAdapterMock->expects($this->exactly(2))->method('quoteInto')->willReturnMap([
108110
['attribute_id = ?', $attributeId, null, null, $conditions[0]],
109111
['store_id != ?', Store::DEFAULT_STORE_ID, null, null, $conditions[1]],

0 commit comments

Comments
 (0)