Skip to content

Commit 25d5c06

Browse files
committed
MAGETWO-44931: [HHVM] Tests of different groups failed to start
- changed skip label
1 parent 2160a97 commit 25d5c06

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dev/tests/static/framework/Magento/TestFramework/Integrity/AbstractConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function testFileSchemaUsingPartialXml()
6060
public function testFileSchemaUsingInvalidXml($expectedErrors = null)
6161
{
6262
if (!function_exists('libxml_set_external_entity_loader')) {
63-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
63+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
6464
}
6565
$xmlFile = $this->_getKnownInvalidPartialXml();
6666
if ($xmlFile === null) {
@@ -74,7 +74,7 @@ public function testFileSchemaUsingInvalidXml($expectedErrors = null)
7474
public function testSchemaUsingPartialXml($expectedErrors = null)
7575
{
7676
if (!function_exists('libxml_set_external_entity_loader')) {
77-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
77+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
7878
}
7979
$xmlFile = $this->_getKnownValidPartialXml();
8080
if ($xmlFile === null) {

dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Core/Model/Fieldset/FieldsetConfigTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function testSchemaUsingValidXml()
6464
public function testSchemaUsingInvalidXml()
6565
{
6666
if (!function_exists('libxml_set_external_entity_loader')) {
67-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
67+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
6868
}
6969
$xmlFile = __DIR__ . '/_files/invalid_fieldset.xml';
7070
$dom = new \DOMDocument();
@@ -96,7 +96,7 @@ public function testFileSchemaUsingValidXml()
9696
public function testFileSchemaUsingInvalidXml()
9797
{
9898
if (!function_exists('libxml_set_external_entity_loader')) {
99-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
99+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
100100
}
101101
$xmlFile = __DIR__ . '/_files/invalid_fieldset.xml';
102102
$dom = new \DOMDocument();

dev/tests/static/testsuite/Magento/Test/Integrity/Magento/Widget/WidgetConfigTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function testSchemaUsingValidXml()
4545
public function testSchemaUsingInvalidXml()
4646
{
4747
if (!function_exists('libxml_set_external_entity_loader')) {
48-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
48+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
4949
}
5050
$xmlFile = __DIR__ . '/_files/invalid_widget.xml';
5151
$schema = $this->urnResolver->getRealPath('urn:magento:module:Magento_Widget:etc/widget.xsd');
@@ -62,7 +62,7 @@ public function testFileSchemaUsingXml()
6262
public function testFileSchemaUsingInvalidXml()
6363
{
6464
if (!function_exists('libxml_set_external_entity_loader')) {
65-
$this->markTestSkipped('Skipped due to MAGETWO-44919');
65+
$this->markTestSkipped('Skipped due to MAGETWO-45033');
6666
}
6767
$xmlFile = __DIR__ . '/_files/invalid_widget.xml';
6868
$schema = $this->urnResolver->getRealPath('urn:magento:module:Magento_Widget:etc/widget_file.xsd');

0 commit comments

Comments
 (0)