summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-06-13 19:18:51 -0700
committerMichael DeHaan <michael.dehaan@gmail.com>2012-06-13 19:18:51 -0700
commitd95e8846f8d2fd9608ebb69b0c7fce889a4a74d0 (patch)
treeffbd43ed80afe15a289ec0f90892d571eae508d3 /test
parent509f657ac8bfb94405fc7c5c47cf7c77c74a99b1 (diff)
parentba1e373034223d277f9ef0be91b8a029e557408a (diff)
downloadansible-d95e8846f8d2fd9608ebb69b0c7fce889a4a74d0.tar.gz
Merge pull request #459 from dhozac/with_items-variable
Allow a variable in with_items
Diffstat (limited to 'test')
-rw-r--r--test/TestUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/TestUtils.py b/test/TestUtils.py
index 7d03e17c47..006a687e8b 100644
--- a/test/TestUtils.py
+++ b/test/TestUtils.py
@@ -17,7 +17,7 @@ class TestUtils(unittest.TestCase):
}
}
- res = ansible.utils.varLookup('data.who', vars)
+ res = ansible.utils._varLookup('data.who', vars)
assert sorted(res) == sorted(vars['data']['who'])