Skip to content

Commit e8b47c4

Browse files
author
olysenko
committed
Merge remote-tracking branch 'origin/2.2.6-develop' into MAGETWO-93792
2 parents 9952526 + 79110b8 commit e8b47c4

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Pricing/Render/FinalPriceBoxTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ protected function setUp()
125125

126126
/**
127127
* @magentoDataFixture Magento/Catalog/_files/product_has_tier_price_show_as_low_as.php
128-
* @magentoDbIsolation enabled
128+
* @magentoDbIsolation disabled
129129
* @magentoAppIsolation enabled
130130
*/
131131
public function testRenderAmountMinimalProductWithTierPricesShouldShowMinTierPrice()
@@ -136,7 +136,7 @@ public function testRenderAmountMinimalProductWithTierPricesShouldShowMinTierPri
136136

137137
/**
138138
* @magentoDataFixture Magento/Catalog/_files/product_different_store_prices.php
139-
* @magentoDbIsolation enabled
139+
* @magentoDbIsolation disabled
140140
* @magentoAppIsolation enabled
141141
* @magentoConfigFixture current_store catalog/frontend/flat_catalog_product 1
142142
*/

dev/tests/integration/testsuite/Magento/Quote/Model/QuoteValidatorTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
use Magento\TestFramework\Helper\Bootstrap;
1313
use Magento\TestFramework\ObjectManager;
1414

15+
/**
16+
* @magentoDbIsolation disabled
17+
*/
1518
class QuoteValidatorTest extends \PHPUnit\Framework\TestCase
1619
{
1720
/**

dev/tests/integration/testsuite/Magento/Sales/Model/Order/Address/RendererTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ protected function setUp()
4646

4747
/**
4848
* @magentoDataFixture Magento/Sales/_files/order_fixture_store.php
49-
* @magentoDbIsolation enabled
49+
* @magentoDbIsolation disabled
5050
* @magentoAppIsolation enabled
5151
*/
5252
public function testFormat()

dev/tests/integration/testsuite/Magento/Store/_files/websites_different_countries_rollback.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
use Magento\Framework\App\Config\ReinitableConfigInterface;
1414

1515
$objectManager = Bootstrap::getObjectManager();
16-
//Deleting second website's store.
17-
$store = $objectManager->create(Store::class);
18-
if ($store->load('fixture_second_store', 'code')->getId()) {
19-
$store->delete();
20-
}
2116

22-
//Deleting the second website.
2317
/** @var Registry $registry */
2418
$registry = $objectManager->get(Registry::class);
2519
$registry->unregister('isSecureArea');
2620
$registry->register('isSecureArea', true);
2721

22+
//Deleting second website's store.
23+
$store = $objectManager->create(Store::class);
24+
if ($store->load('fixture_second_store', 'code')->getId()) {
25+
$store->delete();
26+
}
27+
2828
$configResource = $objectManager->get(\Magento\Config\Model\ResourceModel\Config::class);
2929
//Restoring allowed countries.
3030
$configResource->deleteConfig(

0 commit comments

Comments
 (0)