Skip to content

Commit 2dea62c

Browse files
committed
MC-33493: Test render fields in composite configure block for simple and configurable product
1 parent 95a6050 commit 2dea62c

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

dev/tests/integration/testsuite/Magento/Catalog/Block/Adminhtml/Product/Composite/Fieldset/OptionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function testRenderCustomOptionsWithoutOptions(): void
6868
public function testRenderCustomOptionsFromTextGroup(array $optionData, array $checkArray): void
6969
{
7070
$this->assertTextOptionRenderingOnProduct('simple', $optionData, $checkArray);
71-
}//test bez opcij
71+
}
7272

7373
/**
7474
* Provides test data to verify the display of text type options.

dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/Options/AbstractRenderCustomOptionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ abstract class AbstractRenderCustomOptionsTest extends TestCase
5757
protected function setUp(): void
5858
{
5959
$this->objectManager = Bootstrap::getObjectManager();
60-
$this->productRepository = $this->objectManager->create(ProductRepositoryInterface::class);
60+
$this->productRepository = $this->objectManager->get(ProductRepositoryInterface::class);
6161
$this->productCustomOptionFactory = $this->objectManager->get(ProductCustomOptionInterfaceFactory::class);
6262
$this->productCustomOptionValuesFactory = $this->objectManager->get(
6363
ProductCustomOptionValuesInterfaceFactory::class

dev/tests/integration/testsuite/Magento/Catalog/Block/Product/View/Options/RenderOptionsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
/**
1313
* Test cases related to check that simple product custom option renders as expected.
1414
*
15-
* @magentoDbIsolation disabled
1615
* @magentoAppArea frontend
1716
*/
1817
class RenderOptionsTest extends AbstractRenderCustomOptionsTest

dev/tests/integration/testsuite/Magento/ConfigurableProduct/Block/Product/View/CustomOptions/RenderOptionsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
/**
1414
* Test cases related to check that configurable product custom option renders as expected.
1515
*
16-
* @magentoDbIsolation disabled
1716
* @magentoAppArea frontend
1817
*/
1918
class RenderOptionsTest extends AbstractRenderCustomOptionsTest

0 commit comments

Comments
 (0)