Change parameters to arguments in hacking/validate

We recently changed the notion of parameters to arguments [1].
Forgot to update hacking/validate.

[1]: https://review.openstack.org/#/c/610389/

Change-Id: I7fc7d16ed68fe9d5f1769eca75f62f99004de0e9
This commit is contained in:
David Moreau Simard 2018-10-16 09:40:47 -04:00
parent 031e757979
commit 3c415a4930
No known key found for this signature in database
GPG Key ID: CBEB466764A9E621
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ from ara.clients.offline import AraOfflineClient
def validate_playbook(playbook):
assert len(playbook['parameters']) == 40
assert len(playbook['arguments']) == 40
assert 'hacking/test-playbook.yml' in playbook['file']['path']
assert len(playbook['files']) == 9
assert playbook['completed']