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.
2 parents 20ddee6 + 9912a91 commit 6a2c404Copy full SHA for 6a2c404
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\Quote;
@@ -23,6 +24,9 @@
23
24
$quoteRepository = $objectManager->get(QuoteRepository::class);
25
/** @var StoreRepository $storeRepository */
26
$storeRepository = $objectManager->get(StoreRepository::class);
27
+/** @var Config $appConfig */
28
+$appConfig = $objectManager->get(Config::class);
29
+$appConfig->clean();
30
31
/** @var Store $defaultStore */
32
$defaultStore = $storeRepository->getActiveStoreByCode('default');
0 commit comments