We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3e9fd4 commit bebbc6bCopy full SHA for bebbc6b
app/code/Magento/SalesRule/Test/Unit/Observer/CouponCodeValidationTest.php
@@ -74,9 +74,13 @@ protected function setUp()
74
$this->searchCriteriaBuilderMock = $this->getMockBuilder(SearchCriteriaBuilder::class)
75
->setMethods(['addFilter', 'create'])
76
->disableOriginalConstructor()->getMockForAbstractClass();
77
- $this->quoteMock = $this->createPartialMock(Quote::class, [
78
- 'getCouponCode', 'setCouponCode', 'getId'
79
- ]);
+ $this->quoteMock = $this->createPartialMock(Quote::class,
+ [
+ 'getCouponCode',
80
+ 'setCouponCode',
81
+ 'getId'
82
+ ]
83
+ );
84
85
$this->couponCodeValidation = new CouponCodeValidation(
86
$this->codeLimitManagerMock,
0 commit comments