@@ -77,13 +77,13 @@ protected function setupOrderExtensionAttributeMock()
77
77
/**
78
78
* @param array $appliedTaxes
79
79
* @param array $itemsAppliedTaxes
80
- * @param array $item_applied_taxes_expected
80
+ * @param array $itemAppliedTaxesExpected
81
81
* @dataProvider afterConvertDataProvider
82
82
*/
83
83
public function testAfterConvert (
84
84
$ appliedTaxes ,
85
85
$ itemsAppliedTaxes ,
86
- $ item_applied_taxes_expected
86
+ $ itemAppliedTaxesExpected
87
87
) {
88
88
$ this ->model ->beforeConvert ($ this ->subjectMock , $ this ->quoteAddressMock );
89
89
@@ -112,7 +112,7 @@ public function testAfterConvert(
112
112
->with (true );
113
113
$ orderExtensionAttributeMock ->expects ($ this ->once ())
114
114
->method ('setItemAppliedTaxes ' )
115
- ->with ($ item_applied_taxes_expected );
115
+ ->with ($ itemAppliedTaxesExpected );
116
116
$ orderMock ->expects ($ this ->once ())
117
117
->method ('setExtensionAttributes ' )
118
118
->with ($ orderExtensionAttributeMock );
@@ -123,13 +123,13 @@ public function testAfterConvert(
123
123
/**
124
124
* @param array $appliedTaxes
125
125
* @param array $itemsAppliedTaxes
126
- * @param array $item_applied_taxes_expected
126
+ * @param array $itemAppliedTaxesExpected
127
127
* @dataProvider afterConvertDataProvider
128
128
*/
129
129
public function testAfterConvertNullExtensionAttribute (
130
130
$ appliedTaxes ,
131
131
$ itemsAppliedTaxes ,
132
- $ item_applied_taxes_expected
132
+ $ itemAppliedTaxesExpected
133
133
) {
134
134
$ this ->model ->beforeConvert ($ this ->subjectMock , $ this ->quoteAddressMock );
135
135
@@ -162,7 +162,7 @@ public function testAfterConvertNullExtensionAttribute(
162
162
->with (true );
163
163
$ orderExtensionAttributeMock ->expects ($ this ->once ())
164
164
->method ('setItemAppliedTaxes ' )
165
- ->with ($ item_applied_taxes_expected );
165
+ ->with ($ itemAppliedTaxesExpected );
166
166
$ orderMock ->expects ($ this ->once ())
167
167
->method ('setExtensionAttributes ' )
168
168
->with ($ orderExtensionAttributeMock );
0 commit comments