Skip to content

Commit 388c144

Browse files
committed
MQE-982: Verification Test around Suite Generation
- Changed assert to check for subset information
1 parent f02c492 commit 388c144

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->assertEquals($expectedGroups, array_keys($yml['groups']));
139+
$this->assertArraySubset(array_keys($yml['groups']), $expectedGroups);
140140

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

0 commit comments

Comments
 (0)