File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed
dev/tests/integration/testsuite/Magento
Sales/Model/Order/Address Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ protected function setUp()
125
125
126
126
/**
127
127
* @magentoDataFixture Magento/Catalog/_files/product_has_tier_price_show_as_low_as.php
128
- * @magentoDbIsolation enabled
128
+ * @magentoDbIsolation disabled
129
129
* @magentoAppIsolation enabled
130
130
*/
131
131
public function testRenderAmountMinimalProductWithTierPricesShouldShowMinTierPrice ()
@@ -136,7 +136,7 @@ public function testRenderAmountMinimalProductWithTierPricesShouldShowMinTierPri
136
136
137
137
/**
138
138
* @magentoDataFixture Magento/Catalog/_files/product_different_store_prices.php
139
- * @magentoDbIsolation enabled
139
+ * @magentoDbIsolation disabled
140
140
* @magentoAppIsolation enabled
141
141
* @magentoConfigFixture current_store catalog/frontend/flat_catalog_product 1
142
142
*/
Original file line number Diff line number Diff line change 12
12
use Magento \TestFramework \Helper \Bootstrap ;
13
13
use Magento \TestFramework \ObjectManager ;
14
14
15
+ /**
16
+ * @magentoDbIsolation disabled
17
+ */
15
18
class QuoteValidatorTest extends \PHPUnit \Framework \TestCase
16
19
{
17
20
/**
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ protected function setUp()
46
46
47
47
/**
48
48
* @magentoDataFixture Magento/Sales/_files/order_fixture_store.php
49
- * @magentoDbIsolation enabled
49
+ * @magentoDbIsolation disabled
50
50
* @magentoAppIsolation enabled
51
51
*/
52
52
public function testFormat ()
Original file line number Diff line number Diff line change 13
13
use Magento \Framework \App \Config \ReinitableConfigInterface ;
14
14
15
15
$ 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
- }
21
16
22
- //Deleting the second website.
23
17
/** @var Registry $registry */
24
18
$ registry = $ objectManager ->get (Registry::class);
25
19
$ registry ->unregister ('isSecureArea ' );
26
20
$ registry ->register ('isSecureArea ' , true );
27
21
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
+
28
28
$ configResource = $ objectManager ->get (\Magento \Config \Model \ResourceModel \Config::class);
29
29
//Restoring allowed countries.
30
30
$ configResource ->deleteConfig (
You can’t perform that action at this time.
0 commit comments