diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-02-21 06:33:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-21 06:33:43 +0000 |
commit | 28c44a46d38c1bd79b54488c30be2f6fcee4bf8f (patch) | |
tree | a0aeeaeed03912a29dd8c97287e5343eaefa028b /tests/unit/loader/qpi_test.py | |
parent | 9a793165a69a1339fcdb85916388b5ab9092646c (diff) | |
parent | f15edb752f72b8f0f23d44f6fd5b6923140ca187 (diff) |
Merge "Fix error in loader test"
Diffstat (limited to 'tests/unit/loader/qpi_test.py')
-rw-r--r-- | tests/unit/loader/qpi_test.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/loader/qpi_test.py b/tests/unit/loader/qpi_test.py index 3328b43a..b53030d4 100644 --- a/tests/unit/loader/qpi_test.py +++ b/tests/unit/loader/qpi_test.py @@ -30,11 +30,10 @@ def test_init(qpi_spec): def test_list_all(benchmarks_root): - qpi_spec_list = QPISpec.list_all(paths=[benchmarks_root]) - assert len(list(qpi_spec_list)) is 2 + qpi_spec_list = list(QPISpec.list_all(paths=[benchmarks_root])) + assert len(qpi_spec_list) is 2 for item in qpi_spec_list: assert SpecProp.NAME in item - assert SpecProp.CONTENT in item assert SpecProp.ABSPATH in item assert SpecProp.ABSPATH is not None |