From 43bf9c86d8bab996b9326f3465dafee8c0fb3e21 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sun, 16 Aug 2015 13:15:23 -0400 Subject: [PATCH] fixed typo --- test/units/template/test_templar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/template/test_templar.py b/test/units/template/test_templar.py index d446efc8e3..e4627c2c61 100644 --- a/test/units/template/test_templar.py +++ b/test/units/template/test_templar.py @@ -73,7 +73,7 @@ class TestTemplar(unittest.TestCase): #self.assertEqual(templar.template("{{lookup('file', '/path/to/my_file.txt')}}"), "foo") # force errors - self.assertRaises(AnsibloeUndefinedVariable, templar.template, "{{bad_var}}") + self.assertRaises(AnsibleUndefinedVariable, templar.template, "{{bad_var}}") self.assertRaises(AnsibleUndefinedVariable, templar.template, "{{lookup('file', bad_var)}}") self.assertRaises(AnsibleError, templar.template, "{{lookup('bad_lookup')}}") self.assertRaises(AnsibleError, templar.template, "{{recursive}}")