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 0097469 commit d5605e8Copy full SHA for d5605e8
dev/tests/integration/testsuite/Magento/Sales/_files/quotes.php
@@ -19,12 +19,17 @@
19
/** @var QuoteRepository $quoteRepository */
20
$quoteRepository = $objectManager->get(QuoteRepository::class);
21
22
+/** @var Magento\Store\Model\Store $store */
23
+$store = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Store\Model\Store::class);
24
+$store->load('fixture_second_store');
25
+$storeId = $store->getId();
26
+
27
$quotes = [
28
'quote for first store' => [
29
'store' => 1,
30
],
31
'quote for second store' => [
- 'store' => 2,
32
+ 'store' => $storeId,
33
34
];
35
0 commit comments