Skip to content

Commit 335d543

Browse files
committed
AC-2242::fixed failing mftf testcases by making chamge in save.php
1 parent 9786dde commit 335d543

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote

1 file changed

+2
-1
lines changed

app/code/Magento/SalesRule/Controller/Adminhtml/Promo/Quote/Save.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ public function execute()
6464
{
6565
$data = $this->getRequest()->getPostValue();
6666
if ($data) {
67-
$data['simple_free_shipping'] = ($data['simple_free_shipping'] === '') ? null : $data['simple_free_shipping'] ;
67+
$data['simple_free_shipping'] = ($data['simple_free_shipping'] === '')
68+
? null : $data['simple_free_shipping'];
6869

6970
try {
7071
/** @var $model \Magento\SalesRule\Model\Rule */

0 commit comments

Comments
 (0)