From ac71caa0ac35cc61cff8337480cbed6b51aac523 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 10 Dec 2014 11:50:48 -0800 Subject: [PATCH] Quote debug msgs and find one more wierd bug to test in v2 --- test/integration/roles/test_binary/tasks/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/integration/roles/test_binary/tasks/main.yml b/test/integration/roles/test_binary/tasks/main.yml index aaddad8ea2d..7ae9f16dc94 100644 --- a/test/integration/roles/test_binary/tasks/main.yml +++ b/test/integration/roles/test_binary/tasks/main.yml @@ -4,6 +4,10 @@ # Probably easier to see them all in a single block to know what we're testing. # When we can start testing v2 we should test that all of these work. +# In v1: The following line will traceback if it's the first task in the role. +# Does not traceback if it's the second or third etc task. +- debug: msg="{{ utf8_simple_accents|b64decode}}" + # Expected values of the written files - name: get checksums that we expect later files to have copy: @@ -117,5 +121,5 @@ # These might give garbled output but none of them should traceback - debug: var=simple_accents -- debug: msg={{ utf8_simple_accents|b64decode}} -- debug: msg={{ latin1_simple_accents|b64decode}} +- debug: msg="{{ utf8_simple_accents|b64decode}}" +- debug: msg="{{ latin1_simple_accents|b64decode}}"