From d37baf3765477599d8246cf5d92af32567de8939 Mon Sep 17 00:00:00 2001 From: David Moreau Simard Date: Fri, 21 Dec 2018 09:54:54 -0500 Subject: [PATCH] Fix ansible-integration test after playbook.files tweak Now that the change in the callback landed, we can address this. We'll improve these tests soon. Change-Id: I47c354771723ae85df4e61529e7d832c2585e245 --- hacking/validate.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hacking/validate.py b/hacking/validate.py index f955dc1..6765114 100644 --- a/hacking/validate.py +++ b/hacking/validate.py @@ -24,8 +24,7 @@ from ara.clients.offline import AraOfflineClient def validate_playbook(playbook): assert len(playbook['arguments']) == 40 - assert 'hacking/test-playbook.yml' in playbook['file']['path'] - assert len(playbook['files']) == 9 + assert len(playbook['files']) == 5 assert playbook['status'] == 'completed'