Skip to content

Commit 5f3438c

Browse files
committed
#57: Debug flag exists in robo generate:tests to print action sequence of test steps
1 parent 91ef188 commit 5f3438c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Magento/FunctionalTestingFramework/Test/Objects/TestObject.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ public function getOrderedActions()
168168
public function getDebugInformation()
169169
{
170170
$debugInformation = [];
171-
$mergeUtil = new ActionMergeUtil($this->getName(), "Test");
172-
$orderList = $mergeUtil->resolveActionSteps($this->parsedSteps);
171+
$orderList = $this->getOrderedActions();
173172

174173
foreach ($orderList as $action) {
175174
$debugInformation[] = "\t" . $action->getType() . ' ' . $action->getStepKey();

0 commit comments

Comments
 (0)