Skip to content

Commit a1d57b6

Browse files
committed
Merge remote-tracking branch 'origin/MQE-472' into sprint-develop
# Conflicts: # dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Catalog/Metadata/product_attribute_set-meta.xml # dev/tests/acceptance/tests/functional/Magento/FunctionalTest/Checkout/Metadata/coupon-meta.xml # dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/CreateSalesRuleByApiCest.xml
2 parents d4134d0 + 16f43be commit a1d57b6

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
/**
4+
* Copyright © Magento, Inc. All rights reserved.
5+
* See COPYING.txt for license details.
6+
*/
7+
-->
8+
9+
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10+
xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataProfileSchema.xsd">
11+
<entity name="SimpleSalesRule" type="SalesRule">
12+
<data key="name" unique="suffix">SalesRule</data>
13+
<data key="is_active">true</data>
14+
<required-entity type="SalesRuleStoreLabel">SalesRuleStoreLabel1</required-entity>
15+
<required-entity type="SalesRuleStoreLabel">SalesRuleStoreLabel2</required-entity>
16+
</entity>
17+
<entity name="SalesRuleStoreLabel1" type="SalesRuleStoreLabel">
18+
<data key="store_id">0</data>
19+
<data key="store_label">TestRule_Label</data>
20+
</entity>
21+
<entity name="SalesRuleStoreLabel2" type="SalesRuleStoreLabel">
22+
<data key="store_id">1</data>
23+
<data key="store_label">TestRule_Label_default</data>
24+
</entity>
25+
</config>

dev/tests/acceptance/tests/functional/Magento/FunctionalTest/SampleTests/Cest/UpdateSimpleProductByApiCest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<updateData mergeKey="updateProduct" entity="NewSimpleProduct" createDataKey="productHandle"/>
2626
</before>
2727
<after>
28-
<deleteData mergeKey="delete" createDataKey="productHandle"/>
28+
<deleteData mergeKey="delete" createDataKey="updateProduct"/>
2929
</after>
3030
<test name="UpdateSimpleProductByApiTest">
3131
</test>

0 commit comments

Comments
 (0)