From bd56e2f6943eb650e2734eebe230e874180aa6d5 Mon Sep 17 00:00:00 2001 From: Nazarn96 Date: Mon, 6 May 2019 09:57:37 +0300 Subject: [PATCH] magento/magento2#22558 static-test-fix --- .../testsuite/Magento/Quote/Model/Quote/AddressTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php index d040f85545b40..545638bcb0c57 100644 --- a/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php +++ b/dev/tests/integration/testsuite/Magento/Quote/Model/Quote/AddressTest.php @@ -31,6 +31,9 @@ class AddressTest extends \Magento\TestFramework\Indexer\TestCase /** @var \Magento\Framework\Reflection\DataObjectProcessor */ protected $dataProcessor; + /** + * phpcs:ignoreFile + */ public static function setUpBeforeClass() { $db = \Magento\TestFramework\Helper\Bootstrap::getInstance()->getBootstrap() @@ -343,7 +346,8 @@ public function testSaveShippingAddressWithEmptyRegionId() $customerAddress->setRegionId(0); $address = $this->dataProcessor->buildOutputDataArray( - $customerAddress, \Magento\Customer\Api\Data\AddressInterface::class + $customerAddress, + \Magento\Customer\Api\Data\AddressInterface::class ); $shippingAddress = $this->_quote->getShippingAddress();