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 c93cc72 commit 7b4c95dCopy full SHA for 7b4c95d
src/Magento/FunctionalTestingFramework/Util/TestGenerator.php
@@ -269,7 +269,7 @@ public function assembleTestPhp($testObject)
269
}
270
271
foreach ($argArr as $key => $arrVal) {
272
- if (!empty($argArr[$key + 1]) && $argArr[$key + 1] === $arrVal ) {
+ if (!empty($argArr[$key + 1]) && $argArr[$key + 1] === $arrVal) {
273
$err[] = 'Duplicate argument name '.$arrVal.' not allowed in helper or actionGroup';
274
throw new TestFrameworkException(implode(PHP_EOL, $err));
275
0 commit comments