Skip to content

Commit 6a2c404

Browse files
committed
Merge remote-tracking branch 'origin/MC-20401' into 2.3-develop-pr94
2 parents 20ddee6 + 9912a91 commit 6a2c404

File tree

1 file changed

+4
-0
lines changed
  • dev/tests/integration/testsuite/Magento/Sales/_files

1 file changed

+4
-0
lines changed

dev/tests/integration/testsuite/Magento/Sales/_files/quotes.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8+
use Magento\Framework\App\Config;
89
use Magento\Store\Model\StoreRepository;
910
use Magento\Quote\Model\QuoteFactory;
1011
use Magento\Quote\Model\Quote;
@@ -23,6 +24,9 @@
2324
$quoteRepository = $objectManager->get(QuoteRepository::class);
2425
/** @var StoreRepository $storeRepository */
2526
$storeRepository = $objectManager->get(StoreRepository::class);
27+
/** @var Config $appConfig */
28+
$appConfig = $objectManager->get(Config::class);
29+
$appConfig->clean();
2630

2731
/** @var Store $defaultStore */
2832
$defaultStore = $storeRepository->getActiveStoreByCode('default');

0 commit comments

Comments
 (0)