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 3541230 commit 9afa1abCopy full SHA for 9afa1ab
src/Magento/FunctionalTestingFramework/Util/TestGenerator.php
@@ -264,12 +264,7 @@ public function throwExceptionIfDuplicateArgumentsFound(string $fileContents)
264
$argArr[$key] = explode(" ", trim($fileVal))[1];
265
}
266
267
- foreach ($argArr as $key => $arrVal) {
268
- if (!empty($argArr[$key + 1]) && $argArr[$key + 1] === $arrVal) {
269
- $err[] = 'Duplicate argument name '.$arrVal.' not allowed in helper or actionGroup';
270
- throw new TestFrameworkException(implode(PHP_EOL, $err));
271
- }
272
+
273
274
275
/**
0 commit comments