Skip to content

Commit 9ff47c2

Browse files
committed
MAGETWO-53366: Tax Report does not display any records
- changing parameter variable name to camel case
1 parent 830807e commit 9ff47c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/code/Magento/Tax/Test/Unit/Model/Quote/ToOrderConverterTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ protected function setupOrderExtensionAttributeMock()
7777
/**
7878
* @param array $appliedTaxes
7979
* @param array $itemsAppliedTaxes
80-
* @param array $item_applied_taxes_expected
80+
* @param array $itemAppliedTaxesExpected
8181
* @dataProvider afterConvertDataProvider
8282
*/
8383
public function testAfterConvert(
8484
$appliedTaxes,
8585
$itemsAppliedTaxes,
86-
$item_applied_taxes_expected
86+
$itemAppliedTaxesExpected
8787
) {
8888
$this->model->beforeConvert($this->subjectMock, $this->quoteAddressMock);
8989

@@ -112,7 +112,7 @@ public function testAfterConvert(
112112
->with(true);
113113
$orderExtensionAttributeMock->expects($this->once())
114114
->method('setItemAppliedTaxes')
115-
->with($item_applied_taxes_expected);
115+
->with($itemAppliedTaxesExpected);
116116
$orderMock->expects($this->once())
117117
->method('setExtensionAttributes')
118118
->with($orderExtensionAttributeMock);
@@ -123,13 +123,13 @@ public function testAfterConvert(
123123
/**
124124
* @param array $appliedTaxes
125125
* @param array $itemsAppliedTaxes
126-
* @param array $item_applied_taxes_expected
126+
* @param array $itemAppliedTaxesExpected
127127
* @dataProvider afterConvertDataProvider
128128
*/
129129
public function testAfterConvertNullExtensionAttribute(
130130
$appliedTaxes,
131131
$itemsAppliedTaxes,
132-
$item_applied_taxes_expected
132+
$itemAppliedTaxesExpected
133133
) {
134134
$this->model->beforeConvert($this->subjectMock, $this->quoteAddressMock);
135135

@@ -162,7 +162,7 @@ public function testAfterConvertNullExtensionAttribute(
162162
->with(true);
163163
$orderExtensionAttributeMock->expects($this->once())
164164
->method('setItemAppliedTaxes')
165-
->with($item_applied_taxes_expected);
165+
->with($itemAppliedTaxesExpected);
166166
$orderMock->expects($this->once())
167167
->method('setExtensionAttributes')
168168
->with($orderExtensionAttributeMock);

0 commit comments

Comments
 (0)