summaryrefslogtreecommitdiff
path: root/main/test.c
diff options
context:
space:
mode:
authorLeif Madsen <leif@leifmadsen.com>2010-03-17 19:06:04 +0000
committerLeif Madsen <leif@leifmadsen.com>2010-03-17 19:06:04 +0000
commit0c5fb8037c0b7576646e4e9e613b7272bb1a6979 (patch)
tree5207e51a6df2f5e87739d74b4168e2904135f1ba /main/test.c
parent91d6592e610c5701ef46810cbece11fe91a0132a (diff)
main/test.c reports erroneous CLI message.
(closes issue #17051) Reported by: Nick_Lewis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@253205 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/test.c')
-rw-r--r--main/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/test.c b/main/test.c
index fd5e5c728..c5223e6a8 100644
--- a/main/test.c
+++ b/main/test.c
@@ -708,7 +708,7 @@ static char *test_cli_execute_registered(struct ast_cli_entry *e, int cmd, struc
ast_cli(a->fd, "Running all available tests matching category %s\n\n", a->argv[3]);
test_execute_multiple(NULL, a->argv[3], a);
} else if (a->argc == 6) { /* run only a single test matching the category and name */
- ast_cli(a->fd, "Running all available tests matching category %s and name %s\n\n", a->argv[5], a->argv[3]);
+ ast_cli(a->fd, "Running all available tests matching category %s and name %s\n\n", a->argv[3], a->argv[5]);
test_execute_multiple(a->argv[5], a->argv[3], a);
} else {
return CLI_SHOWUSAGE;