Skip to content

Commit d4e8f8c

Browse files
Tests can also be selected based on their group using the <groups> element in the XML configuration file
1 parent 464ed56 commit d4e8f8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TextUI/Command/Commands/ListTestSuitesCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ private function warnAboutConflictingOptions(): string
8383
}
8484

8585
if ($configuration->hasGroups()) {
86-
$buffer .= 'The --group and --list-suites options cannot be combined, --group is ignored' . PHP_EOL;
86+
$buffer .= 'The --group (CLI) and <groups> (XML) options cannot be combined with --list-suites, --group and <groups> are ignored' . PHP_EOL;
8787
}
8888

8989
if ($configuration->hasExcludeGroups()) {
90-
$buffer .= 'The --exclude-group and --list-suites options cannot be combined, --exclude-group is ignored' . PHP_EOL;
90+
$buffer .= 'The --exclude-group (CLI) and <groups> (XML) options cannot be combined with --list-suites, --exclude-group and <groups> are ignored' . PHP_EOL;
9191
}
9292

9393
if (!empty($buffer)) {

0 commit comments

Comments
 (0)