Skip to content

Commit 2f506a6

Browse files
committed
ACP2E-64: Bundle Products Special Price Column in Grid should have % sign not currency sign
- Fixed the static test failure.
1 parent 439c5f9 commit 2f506a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/Bundle/Ui/DataProvider/Product/Modifier/SpecialPriceAttributes.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ class SpecialPriceAttributes implements ModifierInterface
4040
* PriceAttributes constructor.
4141
*
4242
* @param DirectoryCurrency $directoryCurrency
43-
* @param array $priceAttributeList
4443
* @param ResolverInterface $localeResolver
44+
* @param array $priceAttributeList
4545
*/
4646
public function __construct(
4747
DirectoryCurrency $directoryCurrency,
48-
array $priceAttributeList = [],
49-
ResolverInterface $localeResolver
48+
ResolverInterface $localeResolver,
49+
array $priceAttributeList = []
5050
) {
51-
$this->priceAttributeList = $priceAttributeList;
5251
$this->directoryCurrency = $directoryCurrency;
5352
$this->localeResolver = $localeResolver;
53+
$this->priceAttributeList = $priceAttributeList;
5454
}
5555

5656
/**

0 commit comments

Comments
 (0)