diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-19 15:16:01 +0800 |
---|---|---|
committer | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-04-20 11:32:42 +0800 |
commit | d9af3b2977080be6ab33fcf785f726625e46f370 (patch) | |
tree | 3c84dc2121a60a26c98aef2d11b6d3cc6fb52e8d /tests/integration/run.yaml | |
parent | 59e48a5df9eb9c10708cd1873f8b5c623bdeb5f2 (diff) |
Fix error in details
The leading space causes `details` value to be string, not dict
Change-Id: Ie2acfd91f2ec9280c0a24e2459229a72f45350af
Signed-off-by: Yujun Zhang <zhang.yujunz@zte.com.cn>
Diffstat (limited to 'tests/integration/run.yaml')
-rw-r--r-- | tests/integration/run.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/run.yaml b/tests/integration/run.yaml index 5da8ca91..5c74a478 100644 --- a/tests/integration/run.yaml +++ b/tests/integration/run.yaml @@ -90,6 +90,6 @@ start_date: "{{ ansible_date_time.date }}" stop_date: "{{ ansible_date_time.date }}" criteria: "" - details: " {{ pod_result }}" + details: "{{ pod_result }}" tags: [testapi] |