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 48a90aa6b0954bf7ab2bdc67e788244a8e2bb670..fe27aa7c15fc17fd6fb683bd710c8bcc68bb17f7 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
@@ -67,17 +67,10 @@ class ValidationMessageTest extends \PHPUnit\Framework\TestCase
             ->with('sales/minimum_order/amount', \Magento\Store\Model\ScopeInterface::SCOPE_STORE)
             ->willReturn($minimumAmount);
 
-        $this->priceHelperMock->expects(
-            $this->once()
-        )->method(
-            'currency'
-        )->with(
-            $minimumAmount,
-            true,
-            false
-        )->will(
-            $this->returnValue($minimumAmountCurrency)
-        );
+        $this->priceHelperMock->expects($this->once())
+            ->method('currency')
+            ->with($minimumAmount, true, false)
+            ->will($this->returnValue($minimumAmountCurrency));
 
         $this->assertEquals(
             __('Minimum order amount is %1', $minimumAmountCurrency),