Skip to content

Commit

Permalink
MQE-1141: UpdateTestSchemaPaths broken due to updated relative paths
Browse files Browse the repository at this point in the history
- Updated paths of all relevant paths.
  • Loading branch information
KevinBKozan authored Jul 16, 2018
1 parent 890b392 commit 45d802b
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,24 @@ class UpdateTestSchemaPaths implements UpgradeInterface
*/
public function execute(InputInterface $input)
{
// @codingStandardsIgnoreStart
$relativeToUrn = [
"/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataOperation.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataOperation.xsd"
=> "urn:magento:mftf:DataGenerator/etc/dataOperation.xsd",
"/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataProfileSchema.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/DataGenerator/etc/dataProfileSchema.xsd"
=> "urn:magento:mftf:DataGenerator/etc/dataProfileSchema.xsd",
"/src/Magento/FunctionalTestingFramework/Page/etc/PageObject.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/PageObject.xsd"
=> "urn:magento:mftf:Page/etc/PageObject.xsd",
"/src/Magento/FunctionalTestingFramework/Page/etc/SectionObject.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Page/etc/SectionObject.xsd"
=> "urn:magento:mftf:Page/etc/SectionObject.xsd",
"/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/actionGroupSchema.xsd"
=> "urn:magento:mftf:Test/etc/actionGroupSchema.xsd",
"/src/Magento/FunctionalTestingFramework/Test/etc/testSchema.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Test/etc/testSchema.xsd"
=> "urn:magento:mftf:Test/etc/testSchema.xsd",
"/src/Magento/FunctionalTestingFramework/Suite/etc/suiteSchema.xsd"
"dev/tests/acceptance/vendor/magento/magento2-functional-testing-framework/src/Magento/FunctionalTestingFramework/Suite/etc/suiteSchema.xsd"
=> "urn:magento:mftf:Suite/etc/suiteSchema.xsd"
];
// @codingStandardsIgnoreEnd

$relativePatterns = [];
$urns = [];
Expand Down

0 comments on commit 45d802b

Please sign in to comment.