Skip to content

Commit de679c7

Browse files
author
Oleksandr Gorkun
committed
Merge branch '2.4.0-develop' of https://github.com/magento/magento2ce into MC-34764
2 parents 88c4e32 + ce0eba1 commit de679c7

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
</div>
113113
</div>
114114
</div>
115-
<div class="message notice" if="message">
116-
<div data-bind="text: message"></div>
115+
<div class="message notice" if="$data.message">
116+
<div data-bind="text: $data.message"></div>
117117
</div>
118118
</li>

app/code/Magento/Sales/Test/Mftf/Test/AdminReorderWithCatalogPriceRuleDiscountTest.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,16 @@
2525
<createData entity="SimpleProduct2" stepKey="createSimpleProductApi"/>
2626
<actionGroup ref="AdminLoginActionGroup" stepKey="loginAsAdmin"/>
2727
<actionGroup ref="AdminCatalogPriceRuleDeleteAllActionGroup" stepKey="deleteAllCatalogPriceRule"/>
28+
<!-- Clearing cache just in case -->
29+
<actionGroup ref="CliCacheFlushActionGroup" stepKey="flushCache">
30+
<argument name="tags" value=""/>
31+
</actionGroup>
32+
<actionGroup ref="CliIndexerReindexActionGroup" stepKey="reindex">
33+
<argument name="indices" value=""/>
34+
</actionGroup>
35+
<amOnPage url="{{AdminCatalogPriceRuleGridPage.url}}" stepKey="goToAdminCatalogPriceRuleGridPage2"/>
36+
<!-- It sometimes is loading too long for default 10s -->
37+
<waitForPageLoad time="60" stepKey="waitForPageFullyLoaded2"/>
2838
<!--Create the catalog price rule -->
2939
<createData entity="CatalogRuleToPercent" stepKey="createCatalogRule"/>
3040
<!--Create order via API-->

dev/tests/integration/testsuite/Magento/Elasticsearch6/Controller/QuickSearchTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ public function testQuickSearchWithImprovedPriceRangeCalculation()
6464
$this->storeManager->setCurrentStore($defaultStore);
6565
}
6666

67-
$this->assertContains('search product 1', $responseBody);
67+
$this->assertStringContainsString('search product 1', $responseBody);
6868
}
6969
}

0 commit comments

Comments
 (0)