Skip to content

Commit 8b49ff9

Browse files
committed
to pass static test
1 parent e14d5cc commit 8b49ff9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/code/Magento/Quote/Model/Quote/Item/Processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ public function __construct(
5353
/**
5454
* Initialize quote item object
5555
*
56-
* @param DataObject $request
5756
* @param Product $product
57+
* @param DataObject $request
5858
*
5959
* @return Item
6060
*/

app/code/Magento/Quote/Test/Unit/Model/Quote/Item/ProcessorTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ protected function setUp()
6868
['create']
6969
);
7070

71-
$this->itemMock = $this->createPartialMock(\Magento\Quote\Model\Quote\Item::class, [
71+
$this->itemMock = $this->createPartialMock(\Magento\Quote\Model\Quote\Item::class,
72+
[
7273
'getId',
7374
'setOptions',
7475
'__wakeup',
@@ -78,7 +79,8 @@ protected function setUp()
7879
'setOriginalCustomPrice',
7980
'setData',
8081
'setprice'
81-
]);
82+
]
83+
);
8284
$this->quoteItemFactoryMock->expects($this->any())
8385
->method('create')
8486
->will($this->returnValue($this->itemMock));

0 commit comments

Comments
 (0)