Skip to content

Commit e91cc95

Browse files
committed
WebApi Test Fixes
1 parent d8eea92 commit e91cc95

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Event/TestSkippedSubscriber.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ public function notify(Skipped $event): void
2121
$className = $event->test()->className();
2222
$methodName = $event->test()->methodName();
2323

24-
if(!in_array($methodName, ['testAclHasAccess', 'testAclNoAccess', 'testCreateInvalidPriceFormat'])) {
24+
$skipMethods = [
25+
'testAclHasAccess', 'testAclNoAccess', 'testCreateInvalidPriceFormat', 'testGetListWithAdditionalParams',
26+
'testImageRolesWithMultipleStores', 'testResetSpecialPrice'
27+
];
28+
29+
if(!in_array($methodName, $skipMethods)) {
2530
$objectManager = Bootstrap::getObjectManager();
2631
$assetRepo = $objectManager->create($className, ['name' => $methodName]);
2732

0 commit comments

Comments
 (0)