Skip to content

Commit c47de20

Browse files
authored
ENGCOM-4705: Remove an unused variable from order_list fixture in the integration test suite. #22220
2 parents aa6368e + 71bcca7 commit c47de20

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

dev/tests/integration/testsuite/Magento/Sales/_files/order_list.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
use Magento\Sales\Model\Order\Address as OrderAddress;
1010
use Magento\Sales\Model\Order\Payment;
1111

12+
// phpcs:ignore Magento2.Security.IncludeFile
1213
require 'order.php';
1314
/** @var Order $order */
1415
/** @var Order\Payment $payment */
@@ -24,8 +25,7 @@
2425
'subtotal' => 120.00,
2526
'base_grand_total' => 120.00,
2627
'store_id' => 1,
27-
'website_id' => 1,
28-
'payment' => $payment
28+
'website_id' => 1
2929
],
3030
[
3131
'increment_id' => '100000003',
@@ -35,8 +35,7 @@
3535
'base_grand_total' => 140.00,
3636
'subtotal' => 140.00,
3737
'store_id' => 0,
38-
'website_id' => 0,
39-
'payment' => $payment
38+
'website_id' => 0
4039
],
4140
[
4241
'increment_id' => '100000004',
@@ -46,8 +45,7 @@
4645
'base_grand_total' => 140.00,
4746
'subtotal' => 140.00,
4847
'store_id' => 1,
49-
'website_id' => 1,
50-
'payment' => $payment
48+
'website_id' => 1
5149
],
5250
];
5351

0 commit comments

Comments
 (0)