summaryrefslogtreecommitdiff
path: root/test/TestPlayBook.py
diff options
context:
space:
mode:
authorPetros Moisiadis <pmoisiadis@modulus.gr>2012-08-01 22:17:16 +0300
committerPetros Moisiadis <pmoisiadis@modulus.gr>2012-08-01 22:17:16 +0300
commit2ac4acbf9760a1bdc80a2ad7c15e4b9128168ce6 (patch)
tree04bba2b6268497b772fd750d840cbd12f0d7a2e6 /test/TestPlayBook.py
parent5f4bf813b148069eb6af1621e06d94f6817d64b0 (diff)
downloadansible-2ac4acbf9760a1bdc80a2ad7c15e4b9128168ce6.tar.gz
fixes for tests
Diffstat (limited to 'test/TestPlayBook.py')
-rw-r--r--test/TestPlayBook.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TestPlayBook.py b/test/TestPlayBook.py
index 8e5704e7ee..cf13ee3852 100644
--- a/test/TestPlayBook.py
+++ b/test/TestPlayBook.py
@@ -54,8 +54,8 @@ class TestCallbacks(object):
def on_unreachable(self, host, msg):
EVENTS.append([ 'unreachable', [ host, msg ]])
- def on_failed(self, host, results):
- EVENTS.append([ 'failed', [ host, results ]])
+ def on_failed(self, host, results, ignore_errors):
+ EVENTS.append([ 'failed', [ host, results, ignore_errors ]])
def on_ok(self, host, result):
# delete certain info from host_result to make test comparisons easier