From d6a1cbeefb43d906d48ae4ee4b5b14b2acfe6f6e Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Mon, 24 Aug 2015 22:28:53 -0400 Subject: [PATCH] corrected varname that started with number and broke templating --- test/integration/roles/test_filters/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/roles/test_filters/tasks/main.yml b/test/integration/roles/test_filters/tasks/main.yml index dd5ef7c4c43..a94bb8c6559 100644 --- a/test/integration/roles/test_filters/tasks/main.yml +++ b/test/integration/roles/test_filters/tasks/main.yml @@ -37,12 +37,12 @@ - name: 9851 - Compare generated json to known good shell: diff -w {{output_dir}}/9851.out {{output_dir}}/9851.txt - register: 9851_diff_result + register: diff_result_9851 - name: 9851 - verify generated file matches known good assert: that: - - '9851_diff_result.stdout == ""' + - 'diff_result_9851.stdout == ""' - name: fill in a basic template template: src=foo.j2 dest={{output_dir}}/foo.templated mode=0644