diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-06-28 09:48:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-28 09:48:33 -0400 |
| commit | 1e84e9a697729e8e3847346c8046181f948f4350 (patch) | |
| tree | 57240610b4008c7604912f8c913dc981da968737 /tests/lib/cli/common_cli.c | |
| parent | 5ce1d8b118ae85765d135aaf06bf04a554607d12 (diff) | |
| parent | 01aff72e26c51a36d34636b96434589bc621336c (diff) | |
Merge pull request #714 from opensourcerouting/cli_magic_defpy
CLI magic: part 1 (DEFPY)
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; |
