From 103f55359ac168b0b3c06315069b481830dbc487 Mon Sep 17 00:00:00 2001 From: KevinBKozan Date: Fri, 6 Apr 2018 09:41:44 -0500 Subject: [PATCH] MQE-743: Can't run tests without a store having "default" store code - Fix bad merge on getData function call. --- src/Magento/FunctionalTestingFramework/Util/TestGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magento/FunctionalTestingFramework/Util/TestGenerator.php b/src/Magento/FunctionalTestingFramework/Util/TestGenerator.php index 73be6295a..cae931611 100644 --- a/src/Magento/FunctionalTestingFramework/Util/TestGenerator.php +++ b/src/Magento/FunctionalTestingFramework/Util/TestGenerator.php @@ -853,7 +853,7 @@ public function generateStepsPhp($actionObjects, $hookObject = false, $actor = " } if (isset($customActionAttributes['index'])) { - $getEntityFunctionCall .= sprintf(", %s", (int)$customActionAttributes['index']); + $getEntityFunctionCall .= sprintf("%s", (int)$customActionAttributes['index']); } else { $getEntityFunctionCall .= 'null'; }