Skip to content

Commit

Permalink
ENGCOM-4705: Remove an unused variable from order_list fixture in the…
Browse files Browse the repository at this point in the history
… integration test suite. #22220
  • Loading branch information
sidolov authored Apr 15, 2019
2 parents aa6368e + 71bcca7 commit c47de20
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use Magento\Sales\Model\Order\Address as OrderAddress;
use Magento\Sales\Model\Order\Payment;

// phpcs:ignore Magento2.Security.IncludeFile
require 'order.php';
/** @var Order $order */
/** @var Order\Payment $payment */
Expand All @@ -24,8 +25,7 @@
'subtotal' => 120.00,
'base_grand_total' => 120.00,
'store_id' => 1,
'website_id' => 1,
'payment' => $payment
'website_id' => 1
],
[
'increment_id' => '100000003',
Expand All @@ -35,8 +35,7 @@
'base_grand_total' => 140.00,
'subtotal' => 140.00,
'store_id' => 0,
'website_id' => 0,
'payment' => $payment
'website_id' => 0
],
[
'increment_id' => '100000004',
Expand All @@ -46,8 +45,7 @@
'base_grand_total' => 140.00,
'subtotal' => 140.00,
'store_id' => 1,
'website_id' => 1,
'payment' => $payment
'website_id' => 1
],
];

Expand Down

0 comments on commit c47de20

Please sign in to comment.