1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix spurious test errors. (#2709)

This commit is contained in:
Felix Fontein 2021-06-04 09:53:34 +02:00 committed by GitHub
parent a4f46b881a
commit 2e8746a8aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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