From 4935014643a623cc7101dfdf846cb20ddade6239 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Mon, 27 Nov 2017 11:50:07 +0530 Subject: [PATCH] minor fix in bench run-ui-tests --help (#4537) --- frappe/commands/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index 9b4d40dcd5..3b459c0791 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -327,7 +327,7 @@ def run_tests(context, app=None, module=None, doctype=None, test=(), @click.command('run-ui-tests') @click.option('--app', help="App to run tests on, leave blank for all apps") -@click.option('--test', help="File name of the test you want to run") +@click.option('--test', help="Path to the specific test you want to run") @click.option('--profile', is_flag=True, default=False) @pass_context def run_ui_tests(context, app=None, test=False, profile=False):