File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
dev/tests/integration/testsuite/Magento
ConfigurableImportExport/Model
Newsletter/Controller/Adminhtml Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,10 @@ public function exportImportDataProvider()
30
30
*/
31
31
protected function assertEqualsSpecificAttributes ($ expectedProduct , $ actualProduct )
32
32
{
33
- $ expectedAssociatedProducts = $ expectedProduct ->getTypeInstance ()->getUsedProducts ($ expectedProduct );
34
- $ actualAssociatedProducts = $ actualProduct ->getTypeInstance ()->getUsedProducts ($ actualProduct );
33
+ /** @var \Magento\ConfigurableProduct\Model\Product\Type\Configurable $prooductType */
34
+ $ prooductType = $ expectedProduct ->getTypeInstance ();
35
+ $ expectedAssociatedProducts = $ prooductType ->getUsedProductCollection ($ expectedProduct );
36
+ $ actualAssociatedProducts = iterator_to_array ($ prooductType ->getUsedProductCollection ($ actualProduct ));
35
37
36
38
$ expectedAssociatedProductSkus = [];
37
39
$ actualAssociatedProductSkus = [];
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ public function setUp()
29
29
*/
30
30
public function testSetSaveHandler ($ deploymentConfigHandler , $ iniHandler )
31
31
{
32
+ $ this ->markTestSkipped ('MAGETWO-56529 ' );
32
33
// Set expected session.save_handler config
33
34
if ($ deploymentConfigHandler ) {
34
35
if ($ deploymentConfigHandler !== 'files ' ) {
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ protected function tearDown()
38
38
39
39
/**
40
40
* @magentoDataFixture Magento/Newsletter/_files/newsletter_sample.php
41
- * @magentoAppIsolation disabled
42
41
*/
43
42
public function testSaveActionQueueTemplateAndVerifySuccessMessage ()
44
43
{
You can’t perform that action at this time.
0 commit comments