Commit 1163e38d by James Cammarata

Fix unit tests for new magic variable addition 'ansible_version'

parent cf2a66ef
......@@ -43,6 +43,8 @@ class TestVariableManager(unittest.TestCase):
del vars['omit']
if 'vars' in vars:
del vars['vars']
if 'ansible_version' in vars:
del vars['ansible_version']
self.assertEqual(vars, dict(playbook_dir='.'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment