From c263c56dc6f55872ef2e1d2ceab0c1d72d9f5527 Mon Sep 17 00:00:00 2001 From: Andrew Kolos Date: Thu, 31 Aug 2023 14:08:59 -0700 Subject: [PATCH] give --task-args option in `test_runner` a help description (#133791) Fixes https://github.com/flutter/flutter/issues/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 --- dev/devicelab/lib/command/test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/devicelab/lib/command/test.dart b/dev/devicelab/lib/command/test.dart index 186999403f..e656c8bad1 100644 --- a/dev/devicelab/lib/command/test.dart +++ b/dev/devicelab/lib/command/test.dart @@ -13,7 +13,7 @@ class TestCommand extends Command { 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',