Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 625f685

Browse files
Stabilize Builds on Forward Ports Batch 34
1 parent 48a72fa commit 625f685

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/code/Magento/Quote/Test/Unit/Model/ResourceModel/QuoteTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
namespace Magento\Quote\Test\Unit\Model\ResourceModel;
88

9-
109
use Magento\Framework\App\ResourceConnection;
1110
use Magento\Framework\DB\Adapter\Pdo\Mysql;
1211
use Magento\Framework\DB\Select;
@@ -107,7 +106,9 @@ protected function setUp()
107106
$this->sequenceMock = $this->getMockBuilder(SequenceInterface::class)
108107
->disableOriginalConstructor()
109108
->getMock();
110-
$this->model = $objectManagerHelper->getObject(QuoteResource::class, [
109+
$this->model = $objectManagerHelper->getObject(
110+
QuoteResource::class,
111+
[
111112
'context' => $context,
112113
'entitySnapshot' => $snapshot,
113114
'entityRelationComposite' => $relationComposite,

app/code/Magento/Sales/Test/Unit/Model/AdminOrder/CreateTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,7 @@ public function testSetAccountData()
147147

148148
$quote = $this->createMock(Quote::class);
149149
$quote->method('getCustomer')->willReturn($customer);
150-
$quote->method('addData')
151-
->with(
150+
$quote->method('addData')->with(
152151
[
153152
'customer_group_id' => $attributes[1][1],
154153
'customer_tax_class_id' => $taxClassId

0 commit comments

Comments
 (0)