diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-18 14:05:49 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-06-14 19:29:26 +0200 |
| commit | 169e541c28e21eee3bbb12e06dfeac5b276794c5 (patch) | |
| tree | 6fe408e7d481590b0178563d641b363abd312a44 /tests/lib/cli/common_cli.c | |
| parent | 5578a14d949d89e25ec3e6136158603049e5a2dd (diff) | |
tests: cli: unit test DEFPY() + clidef.py
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'tests/lib/cli/common_cli.c')
| -rw-r--r-- | tests/lib/cli/common_cli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/cli/common_cli.c b/tests/lib/cli/common_cli.c index 7825564e54..cfe1e3cc3b 100644 --- a/tests/lib/cli/common_cli.c +++ b/tests/lib/cli/common_cli.c @@ -39,7 +39,7 @@ int dump_args(struct vty *vty, const char *descr, vty_out (vty, "%s with %d args.%s", descr, argc, VTY_NEWLINE); for (i = 0; i < argc; i++) { - vty_out (vty, "[%02d]: %s%s", i, argv[i]->arg, VTY_NEWLINE); + vty_out (vty, "[%02d] %s@%s: %s%s", i, argv[i]->text, argv[i]->varname, argv[i]->arg, VTY_NEWLINE); } return CMD_SUCCESS; |
