summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-07-16 20:28:32 -0400
committerMichael DeHaan <michael.dehaan@gmail.com>2012-07-16 20:28:32 -0400
commit9e62fd42b5bca3e2ca4f3709700452c6134c7288 (patch)
treeb741c2de9782b4d1cb083e26612a03a9f92ff29b /test
parent0edd0d4736a23d5473c560b18b5cfae920d97f0c (diff)
downloadansible-9e62fd42b5bca3e2ca4f3709700452c6134c7288.tar.gz
update test utils code
Diffstat (limited to 'test')
-rw-r--r--test/TestUtils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/TestUtils.py b/test/TestUtils.py
index 84601c6f05..6eab8373f3 100644
--- a/test/TestUtils.py
+++ b/test/TestUtils.py
@@ -222,7 +222,7 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
- res = ansible.utils.template_from_file("test", "template-basic", vars, {})
+ res = ansible.utils.template_from_file("test", "template-basic", vars)
assert res == 'hello world'
@@ -231,7 +231,7 @@ class TestUtils(unittest.TestCase):
'who': 'world',
}
- res = ansible.utils.template_from_file("test", "template-whitespace", vars, {})
+ res = ansible.utils.template_from_file("test", "template-whitespace", vars)
assert res == 'hello world\n'
@@ -240,7 +240,7 @@ class TestUtils(unittest.TestCase):
'who': u'wórld',
}
- res = ansible.utils.template_from_file("test", "template-basic", vars, {})
+ res = ansible.utils.template_from_file("test", "template-basic", vars)
assert res == u'hello wórld'