Skip to content

Commit 9adda54

Browse files
committed
MC-17824: MAP and MSRP are being used interchangeably when they are different
1 parent c5966c4 commit 9adda54

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dev/tests/functional/tests/app/Magento/Msrp/Test/Constraint/AssertProductEditPageAdvancedPricingFields.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
use Magento\Mtf\Fixture\FixtureInterface;
1212

1313
/**
14-
* Check "Manufacturer's Suggested Retail Price" field on "Advanced pricing" page.
14+
* Check "Minimum Advertised Price" field on "Advanced pricing" page.
1515
*/
1616
class AssertProductEditPageAdvancedPricingFields extends AbstractConstraint
1717
{
1818
/**
19-
* Title of "Manufacturer's Suggested Retail Price" field.
19+
* Title of "Minimum Advertised Price" field.
2020
*
2121
* @var string
2222
*/
23-
private $manufacturerFieldTitle = 'Manufacturer\'s Suggested Retail Price';
23+
private $manufacturerFieldTitle = 'Minimum Advertised Price';
2424

2525
/**
2626
* @param CatalogProductEdit $catalogProductEdit
@@ -35,7 +35,7 @@ public function processAssert(CatalogProductEdit $catalogProductEdit, FixtureInt
3535

3636
\PHPUnit\Framework\Assert::assertTrue(
3737
$advancedPricing->checkField($this->manufacturerFieldTitle),
38-
'"Manufacturer\'s Suggested Retail Price" field is not correct.'
38+
'"Minimum Advertised Price" field is not correct.'
3939
);
4040
}
4141

@@ -46,6 +46,6 @@ public function processAssert(CatalogProductEdit $catalogProductEdit, FixtureInt
4646
*/
4747
public function toString()
4848
{
49-
return '"Manufacturer\'s Suggested Retail Price" field is correct.';
49+
return '"Minimum Advertised Price" field is correct.';
5050
}
5151
}

0 commit comments

Comments
 (0)