We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b7ebf commit 16bbc16Copy full SHA for 16bbc16
dev/tests/api-functional/testsuite/Magento/Sales/Service/V1/OrderApiConfigurableVariationsPriceTest.php
@@ -31,11 +31,6 @@ class OrderApiConfigurableVariationsPriceTest extends WebapiAbstract
31
{
32
private const RESOURCE_PATH = '/V1/orders';
33
34
- /**
35
- * Service version
36
- */
37
- public const SERVICE_VERSION = 'V1';
38
-
39
/**
40
* Fixture storage manager for resolving test data.
41
*
@@ -193,8 +188,10 @@ private function callOrderApi(string $orderId): array
193
188
],
194
189
'soap' => [
195
190
'service' => 'salesOrderRepositoryV1',
196
- 'serviceVersion' => self::SERVICE_VERSION,
197
191
'operation' => 'salesOrderRepositoryV1Get',
192
+ 'parameters' => [
+ 'id' => (int)$orderId,
+ ],
198
199
]);
200
}
0 commit comments