From 74901e41f66b79ff4a7a87dfb4730a05e6b046c9 Mon Sep 17 00:00:00 2001 From: neeta-wagento <neeta@wagento.com> Date: Mon, 8 Jan 2018 15:07:33 +0530 Subject: [PATCH] resolve intendent issues --- .../MinimumOrderAmount/ValidationMessageTest.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php b/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php index 65768b08c37..272a4e3a4ba 100644 --- a/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php +++ b/app/code/Magento/Quote/Test/Unit/Model/Quote/Validator/MinimumOrderAmount/ValidationMessageTest.php @@ -54,9 +54,15 @@ class ValidationMessageTest extends \PHPUnit\Framework\TestCase { $minimumAmount = 20; $minimumAmountCurrency = '$20'; - $this->scopeConfigMock->expects($this->at(0))->method('getValue')->with('sales/minimum_order/description', \Magento\Store\Model\ScopeInterface::SCOPE_STORE)->willReturn(null); + $this->scopeConfigMock->expects($this->at(0)) + ->method('getValue') + ->with('sales/minimum_order/description', \Magento\Store\Model\ScopeInterface::SCOPE_STORE) + ->willReturn(null); - $this->scopeConfigMock->expects($this->at(1))->method('getValue')->with('sales/minimum_order/amount', \Magento\Store\Model\ScopeInterface::SCOPE_STORE)->willReturn($minimumAmount); + $this->scopeConfigMock->expects($this->at(1)) + ->method('getValue') + ->with('sales/minimum_order/amount', \Magento\Store\Model\ScopeInterface::SCOPE_STORE) + ->willReturn($minimumAmount); $this->priceHelperMock->expects($this->once()) ->method('currency') -- GitLab