From f15edb752f72b8f0f23d44f6fd5b6923140ca187 Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Fri, 17 Feb 2017 21:52:02 +0800 Subject: Fix error in loader test Change-Id: Idac7d0ec77941974a5f93108fd5f450eef05a5ad Signed-off-by: Yujun Zhang --- tests/unit/loader/metric_test.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/unit/loader/metric_test.py') diff --git a/tests/unit/loader/metric_test.py b/tests/unit/loader/metric_test.py index 26f144af..619d5e00 100644 --- a/tests/unit/loader/metric_test.py +++ b/tests/unit/loader/metric_test.py @@ -28,11 +28,10 @@ def init_test(metric_spec): def list_all_test(benchmarks_root): - metric_list = MetricSpec.list_all(paths=[benchmarks_root]) - assert len(list(metric_list)) is 6 + metric_list = list(MetricSpec.list_all(paths=[benchmarks_root])) + assert len(metric_list) is 6 for desc in metric_list: assert BaseProp.NAME in desc - assert BaseProp.DESCRIPTION in desc assert BaseProp.ABSPATH in desc assert BaseProp.ABSPATH is not None @@ -40,6 +39,5 @@ def list_all_test(benchmarks_root): def content_test(metric_spec): content = metric_spec.content assert BaseProp.NAME in content - assert BaseProp.DESCRIPTION in content assert BaseProp.WORKLOADS in content assert isinstance(content[BaseProp.WORKLOADS], list) -- cgit 1.2.3-korg