Skip to content

Commit e836fd8

Browse files
committed
MC-20401: [Integration Test] CategoryTree::getTree() returns all the child categories
1 parent 99f206f commit e836fd8

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\QuoteRepository;
@@ -21,6 +22,9 @@
2122
$quoteRepository = $objectManager->get(QuoteRepository::class);
2223
/** @var StoreRepository $storeRepository */
2324
$storeRepository = $objectManager->get(StoreRepository::class);
25+
/** @var Config $appConfig */
26+
$appConfig = $objectManager->get(Config::class);
27+
$appConfig->clean();
2428

2529
$defaultStore = $storeRepository->getActiveStoreByCode('default');
2630
$secondStore = $storeRepository->getActiveStoreByCode('fixture_second_store');

0 commit comments

Comments
 (0)