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 99f206f commit e836fd8Copy full SHA for e836fd8
dev/tests/integration/testsuite/Magento/Sales/_files/quotes.php
@@ -5,6 +5,7 @@
5
*/
6
declare(strict_types=1);
7
8
+use Magento\Framework\App\Config;
9
use Magento\Store\Model\StoreRepository;
10
use Magento\Quote\Model\QuoteFactory;
11
use Magento\Quote\Model\QuoteRepository;
@@ -21,6 +22,9 @@
21
22
$quoteRepository = $objectManager->get(QuoteRepository::class);
23
/** @var StoreRepository $storeRepository */
24
$storeRepository = $objectManager->get(StoreRepository::class);
25
+/** @var Config $appConfig */
26
+$appConfig = $objectManager->get(Config::class);
27
+$appConfig->clean();
28
29
$defaultStore = $storeRepository->getActiveStoreByCode('default');
30
$secondStore = $storeRepository->getActiveStoreByCode('fixture_second_store');
0 commit comments