Skip to content

Commit 4a055bf

Browse files
committed
MQE-1685: Test/Data self extension memory limit error
1 parent 18030d3 commit 4a055bf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Magento/FunctionalTestingFramework/Test/Handlers/ActionGroupObjectHandler.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ private function extendActionGroup($actionGroupObject): ActionGroupObject
131131
{
132132
if ($actionGroupObject->getParentName() !== null) {
133133
if ($actionGroupObject->getParentName() == $actionGroupObject->getName()) {
134-
throw new TestFrameworkException("Mftf Action Group can not extend from itself: " . $actionGroupObject->getName());
134+
throw new TestFrameworkException(
135+
"Mftf Action Group can not extend from itself: " . $actionGroupObject->getName()
136+
);
135137
}
136138
return $this->extendUtil->extendActionGroup($actionGroupObject);
137139
}

0 commit comments

Comments
 (0)