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:
parent
a4f46b881a
commit
2e8746a8aa
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
result4: "{{ query('community.general.random_string', length=-1) }}"
|
result4: "{{ query('community.general.random_string', length=-1) }}"
|
||||||
result5: "{{ query('community.general.random_string', override_special='_', min_special=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
|
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
|
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
|
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
|
result10: "{{ query('community.general.random_string', numbers=false, upper=false, special=false, min_lower=1, length=1) }}" # single lowercase character only
|
||||||
|
|
Loading…
Reference in a new issue