Skip to content

Commit

Permalink
give --task-args option in test_runner a help description (#133791)
Browse files Browse the repository at this point in the history
Fixes flutter/flutter#133790

Provides help text for the `--task-args` option of the `test_runner` devicelab command. The current help text is just copypasta from another option's help text
  • Loading branch information
andrewkolos authored Aug 31, 2023
1 parent 1519553 commit c263c56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/devicelab/lib/command/test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class TestCommand extends Command<void> {
help: 'The name of a task listed under bin/tasks.\n'
' Example: complex_layout__start_up.\n');
argParser.addMultiOption('task-args',
help: 'The name of a task listed under bin/tasks.\n'
help: 'List of arguments to pass to the task.\n'
'For example, "--task-args build" is passed as "bin/task/task.dart --build"');
argParser.addOption(
'device-id',
Expand Down

0 comments on commit c263c56

Please sign in to comment.