summaryrefslogtreecommitdiffstats
path: root/dovetail/cli
diff options
context:
space:
mode:
authorStamatis Katsaounis <mokats@intracom-telecom.com>2018-11-13 11:21:03 +0200
committerStamatis Katsaounis <mokats@intracom-telecom.com>2018-11-14 14:38:12 +0000
commit9d678a7a390f7b57014b615cd4140f0da3dfee11 (patch)
treedbef1e9c878b0e69463c8de5a50829683ed45579 /dovetail/cli
parentc92c49a9031602030f0f4d4fe2f99a9054eabaee (diff)
Add missing unit tests for cli files
JIRA: DOVETAIL-724 This patch adds unit tests for cli methods of Dovetail which were missing. Change-Id: I99c584007659401e298e58aebb1764df1c543894 Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'dovetail/cli')
-rw-r--r--dovetail/cli/commands/cli_testcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/cli/commands/cli_testcase.py b/dovetail/cli/commands/cli_testcase.py
index 3ae76c22..e91d88eb 100644
--- a/dovetail/cli/commands/cli_testcase.py
+++ b/dovetail/cli/commands/cli_testcase.py
@@ -51,7 +51,7 @@ class CliTestcase(object):
else:
testsuite_json = Testsuite.get_all()
if testsuite_json:
- for key, value in testsuite_json.items():
+ for key in testsuite_json.keys():
click.echo("--------------------------")
click.echo("Test Suite {}".format(key))
click.echo("--------------------------")