From 2e8746a8aadc1af2ddc5a9e140851a9c0cf27092 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 4 Jun 2021 09:53:34 +0200 Subject: [PATCH] Fix spurious test errors. (#2709) --- tests/integration/targets/lookup_random_string/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/lookup_random_string/test.yml b/tests/integration/targets/lookup_random_string/test.yml index 52a572379b..edbf9fd035 100644 --- a/tests/integration/targets/lookup_random_string/test.yml +++ b/tests/integration/targets/lookup_random_string/test.yml @@ -9,7 +9,7 @@ result4: "{{ query('community.general.random_string', length=-1) }}" result5: "{{ query('community.general.random_string', override_special='_', min_special=1) }}" result6: "{{ query('community.general.random_string', upper=false, special=false) }}" # lower case only - result7: "{{ query('community.general.random_string', lower=false) }}" # upper case only + result7: "{{ query('community.general.random_string', lower=false, special=false) }}" # upper case only result8: "{{ query('community.general.random_string', lower=false, upper=false, special=false) }}" # number only result9: "{{ query('community.general.random_string', lower=false, upper=false, special=false, min_numeric=1, length=1) }}" # single digit only result10: "{{ query('community.general.random_string', numbers=false, upper=false, special=false, min_lower=1, length=1) }}" # single lowercase character only