Fix ansible-integration test to use the new status for plays and tasks

Change-Id: If3008e04900bcfac8947f267974dd2a4bc6ac4ee
This commit is contained in:
David Moreau Simard 2018-11-15 15:10:40 -05:00
parent ae5408dfe5
commit 1f70395626
No known key found for this signature in database
GPG Key ID: CBEB466764A9E621
1 changed files with 2 additions and 2 deletions

View File

@ -30,11 +30,11 @@ def validate_playbook(playbook):
def validate_play(play):
assert play['completed']
assert play['status'] == "completed"
def validate_task(task):
assert task['completed']
assert task['status'] == "completed"
def validate_host(host):