Update default value for condense_paths in MultitestCommand

- Changed the fallback value for condense_paths from False to True in the MultitestCommand class, ensuring that paths are condensed by default. This adjustment improves the command's usability and aligns with expected behavior.
This commit is contained in:
agessaman
2026-04-04 09:52:22 -07:00
parent c6a7355b3c
commit 12e677a9cf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1006,7 +1006,7 @@ enabled = false
# Example: "Found {path_count} unique path(s) for @[{sender}]:\n{paths}"
response_format = @[{sender}] found {path_count} unique path(s):\n{paths}
# When true, {paths} uses shared-prefix lines ending with ┐ U+2510 when branching, then ├ U+251C / └ U+2514 (nested rows use   U+3000 before ├/└)
condense_paths = false
condense_paths = true
[Greeter_Command]
# Enable greeter to greet users on first channel message (true/false)
+1 -1
View File
@@ -285,7 +285,7 @@ class MultitestCommand(BaseCommand):
self.response_format = None # Use default format
self.condense_paths = self.get_config_value(
'Multitest_Command', 'condense_paths', fallback=False, value_type='bool'
'Multitest_Command', 'condense_paths', fallback=True, value_type='bool'
)
def get_help_text(self) -> str: