We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0d162 commit fc3b3e4Copy full SHA for fc3b3e4
src/Magento/FunctionalTestingFramework/Util/TestGenerator.php
@@ -264,8 +264,8 @@ public function assembleTestPhp($testObject)
264
$fileToArr = explode("\n", file_get_contents($testObject->getFilename()));
265
$argArr = [];
266
foreach ($fileToArr as $key => $fileVal) {
267
- if (strpos($fileVal, "<argument name") == true) {
268
- $argArr[$key] = explode(" ", trim($fileVal))[1];
+ if (strpos($fileVal, "<argument name") == true) {
+ $argArr[$key] = explode(" ", trim($fileVal))[1];
269
}
270
271
foreach ($argArr as $key => $arrVal) {
0 commit comments