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 228e02c commit 2b19f3eCopy full SHA for 2b19f3e
src/Magento/FunctionalTestingFramework/Util/TestGenerator.php
@@ -265,6 +265,9 @@ public function throwExceptionIfDuplicateArgumentsFound(string $fileContents)
265
}
266
267
foreach ($argArr as $key => $arrVal) {
268
+ if (!str_contains('=', $arrVal)) {
269
+ continue;
270
+ }
271
if (!empty($argArr[$key + 1]) && $argArr[$key + 1] === $arrVal) {
272
$err[] = 'Duplicate argument name '.$arrVal.' not allowed in helper or actionGroup';
273
throw new TestFrameworkException(implode(PHP_EOL, $err));
0 commit comments