From 9df314f9c5cc106cc9d73e2b7c09e495722ba32c Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 29 Jan 2019 03:26:21 +0000 Subject: [PATCH] issue #499: another totally moronic implementation difference --- tests/ansible/integration/action/low_level_execute_command.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/ansible/integration/action/low_level_execute_command.yml b/tests/ansible/integration/action/low_level_execute_command.yml index 64b8c14c..7c14cb22 100644 --- a/tests/ansible/integration/action/low_level_execute_command.yml +++ b/tests/ansible/integration/action/low_level_execute_command.yml @@ -22,6 +22,8 @@ raw: 'whoami' register: raw + - debug: msg="x{{raw}}x" + # Can't test stdout because TTY inserts \r in Ansible version. - name: Verify raw module output. assert: @@ -33,6 +35,7 @@ - | raw.stdout_lines|to_text in ( ["\r\n"], + ["", "root"], ["root\r\n"], ["root"], )