do not accept array as extra_vars

related to #5645

* Since we pass extra_vars to ansible as -e; we require that the top
most data-structure be a key-value. NOT an array.
This commit is contained in:
Chris Meyers
2017-07-19 11:30:00 -04:00
parent f31cec2848
commit 802f722e95
3 changed files with 42 additions and 4 deletions

View File

@@ -376,7 +376,7 @@ def test_edit_nonsenstive(patch, job_template_factory, alice):
'forks': 14,
'limit': 'something',
'verbosity': 5,
'extra_vars': '--',
'extra_vars': '---',
'job_tags': 'sometags',
'force_handlers': True,
'skip_tags': 'thistag,thattag',