File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/Magento/FunctionalTestingFramework/Suite/Util Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,9 @@ public function parseSuiteDataIntoObjects($parsedSuiteData)
63
63
foreach ($ testGroupConflicts as $ test ) {
64
64
$ testGroupConflictsFileNames .= $ test ->getFilename () . "\n" ;
65
65
}
66
- throw new XmlException (
67
- "Suite names and Group names can not have the same value. \t\n
68
- Suite: \"{$ suiteName }\" also exists as a group annotation in \n{$ testGroupConflictsFileNames }"
69
- );
66
+ $ exceptionmessage = "\"Suite names and Group names can not have the same value. \t\n" .
67
+ "Suite: \"{$ suiteName }\" also exists as a group annotation in: \n{$ testGroupConflictsFileNames }" ;
68
+ throw new XmlException ($ exceptionmessage );
70
69
}
71
70
72
71
//extract include and exclude references
You can’t perform that action at this time.
0 commit comments