Skip to content

Commit 81e078d

Browse files
committed
MQE-893: Add flag to robo generate: tests which accepts a specific set of tests to execute
- fix array_diff mistake, need to check key
1 parent 5b7eb65 commit 81e078d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Magento/FunctionalTestingFramework/Util/Sorter/ParallelGroupSorter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function getTestsGroupedBySize($suiteConfiguration, $testNameToSize, $lin
6262
$testGroups[$nodeNumber] = $testGroup;
6363

6464
// unset the test which have been used.
65-
$testNameToSizeForUse = array_diff($testNameToSizeForUse, $testGroup);
65+
$testNameToSizeForUse = array_diff_key($testNameToSizeForUse, $testGroup);
6666
$nodeNumber++;
6767
}
6868

0 commit comments

Comments
 (0)