Skip to content

Commit 62d763e

Browse files
committed
Fix SOAP
1 parent 374cce7 commit 62d763e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dev/tests/api-functional/testsuite/Magento/Catalog/Api/ProductRepositoryPriceModeWebsiteChangePriceTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class ProductRepositoryPriceModeWebsiteChangePriceTest extends WebapiAbstract
1313
{
1414
const SERVICE_NAME = 'catalogProductRepositoryV1';
15+
const PRICE_SERVICE_NAME = 'catalogBasePriceStorageV1';
1516
const SERVICE_VERSION = 'V1';
1617
const PRODUCTS_RESOURCE_PATH = '/V1/products';
1718
const PRICES_RESOURCE_PATH = '/V1/products/base-prices';
@@ -61,6 +62,11 @@ public function testChangePriceForStore()
6162
'rest' => [
6263
'resourcePath' => self::PRICES_RESOURCE_PATH,
6364
'httpMethod' => \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_POST
65+
],
66+
'soap' => [
67+
'service' => self::PRICE_SERVICE_NAME,
68+
'serviceVersion' => self::SERVICE_VERSION,
69+
'operation' => self::PRICE_SERVICE_NAME . 'Update',
6470
]
6571
];
6672

0 commit comments

Comments
 (0)