diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2012-04-20 08:09:43 -0400 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2012-04-20 08:09:43 -0400 |
commit | c0c691089d8f1b4e22603518698d70de0df87fe9 (patch) | |
tree | 3bfa2f894539531efeaada4944e13b9298a0b1cc /test | |
parent | 77944939525a7b86dd33171eaee733244ef1a10d (diff) | |
download | ansible-c0c691089d8f1b4e22603518698d70de0df87fe9.tar.gz |
Fix bug in src. Should not code this early :)
Diffstat (limited to 'test')
-rw-r--r-- | test/TestPlayBook.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/TestPlayBook.py b/test/TestPlayBook.py index 97e3f102c3..20a00c43cf 100644 --- a/test/TestPlayBook.py +++ b/test/TestPlayBook.py @@ -140,7 +140,9 @@ class TestPlaybook(unittest.TestCase): callbacks = self.test_callbacks, runner_callbacks = self.test_callbacks ) - return self.playbook.run() + result = self.playbook.run() + print utils.bigjson(dict(events=EVENTS)) + return result def test_one(self): pb = os.path.join(self.test_dir, 'playbook1.yml') |