summaryrefslogtreecommitdiffstats
path: root/qtip/api
diff options
context:
space:
mode:
authorzhifeng.jiang <jiang.zhifeng@zte.com.cn>2016-11-25 21:03:20 +0800
committerzhifeng.jiang <jiang.zhifeng@zte.com.cn>2016-11-25 21:03:20 +0800
commit88abec183e58c761ed7865740794bddb38b1a6cc (patch)
tree8de81b2b242ce257fc9f926916754ced570f99a4 /qtip/api
parent6200c67619329f686dfb888ac7ef25469375df83 (diff)
Bugfix: fix the qtip restful server unit test problem.
JIRA:QTIP-158 Change-Id: I0ed1d3eb6959bb36615734ef757fa95560cb3baf Signed-off-by: zhifeng.jiang <jiang.zhifeng@zte.com.cn>
Diffstat (limited to 'qtip/api')
-rw-r--r--qtip/api/qtip_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtip/api/qtip_server.py b/qtip/api/qtip_server.py
index 9b9dd633..e2ee0d27 100644
--- a/qtip/api/qtip_server.py
+++ b/qtip/api/qtip_server.py
@@ -158,7 +158,7 @@ default is all benchmarks in suite with specified type,
benchmarks = args_handler.get_files_in_suite(args["suite_name"],
args["type"].lower())
- test_cases = args_handler.get_files_in_test_case(args["pod_name"],
+ test_cases = args_handler.get_files_in_test_plan(args["pod_name"],
args["suite_name"],
args["type"].lower())
benchmarks_list = filter(lambda x: x in test_cases, benchmarks)