Skip to content

Commit fb88f3a

Browse files
KevinBKozanokolesnyk
authored andcommitted
MQE-477: Generate tests throws warning when using action groups in merged tests.
- Changed setter of argData[argument] to not error on null arguments.
1 parent 6daf60a commit fb88f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Test/Util/ActionObjectExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ private function processActionGroupArgs($actionAttributeData)
107107
}
108108

109109
$actionAttributeArgData[self::ACTION_GROUP_ARGUMENTS][$attributeDataKey] =
110-
$attributeDataValues[self::ACTION_GROUP_ARG_VALUE];
110+
$attributeDataValues[self::ACTION_GROUP_ARG_VALUE] ?? null;
111111
}
112112

113113
return $actionAttributeArgData;

0 commit comments

Comments
 (0)