Skip to content

Commit 5e69b81

Browse files
committed
MQE-982: Verification Test around Suite Generation
- Using array intersect instead of subset to avoid indexing issues
1 parent 388c144 commit 5e69b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/tests/verification/Tests/SuiteGenerationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function testSuiteGenerationParallel()
136136

137137
// Validate Yaml file updated
138138
$yml = Yaml::parse(file_get_contents(self::CONFIG_YML_FILE));
139-
$this->assertArraySubset(array_keys($yml['groups']), $expectedGroups);
139+
$this->assertEquals(array_intersect($expectedGroups, array_keys($yml['groups'])), $expectedGroups);
140140

141141
foreach ($expectedGroups as $expectedFolder) {
142142
$suiteResultBaseDir = self::GENERATE_RESULT_DIR .

0 commit comments

Comments
 (0)