From 66a4b145eb6b6d220687eb5a13abd7eac5e4faf6 Mon Sep 17 00:00:00 2001
From: Vasyl Kozyrenko <vkozyrenko@magento.com>
Date: Thu, 29 Dec 2016 21:16:04 +0200
Subject: [PATCH] MTA-3901: Add variation for Partial Refund an order placed
 through Braintree with Partial capture

---
 .../tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php
index e7d67d5c5d9..ef35728207a 100644
--- a/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php
+++ b/dev/tests/functional/tests/app/Magento/Sales/Test/TestStep/SubmitOrderStep.php
@@ -74,7 +74,7 @@ class SubmitOrderStep implements TestStepInterface
      * @param FixtureFactory $fixtureFactory
      * @param Customer $customer
      * @param \Magento\Mtf\Fixture\FixtureInterface[] $products
-     * @param OrderInjectable $order
+     * @param OrderInjectable|null $order
      * @param Address|null $billingAddress
      */
     public function __construct(
@@ -90,9 +90,9 @@ class SubmitOrderStep implements TestStepInterface
         $this->salesOrderView = $salesOrderView;
         $this->fixtureFactory = $fixtureFactory;
         $this->customer = $customer;
-        $this->billingAddress = $billingAddress;
         $this->products = $products;
         $this->order = $order;
+        $this->billingAddress = $billingAddress;
     }
 
     /**
-- 
GitLab