diff --git a/test/TestUtils.py b/test/TestUtils.py index ae9baa0432e..da9faa11f34 100644 --- a/test/TestUtils.py +++ b/test/TestUtils.py @@ -6,20 +6,6 @@ import ansible.utils class TestUtils(unittest.TestCase): - ##################################### - ### varLookup function tests - - def test_varLookup_list(self): - vars = { - 'data': { - 'who': ['joe', 'jack', 'jeff'] - } - } - - res = ansible.utils.varLookup('${data.who}', vars) - - assert sorted(res) == sorted(vars['data']['who']) - ##################################### ### varReplace function tests