mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 05:40:23 -07:00
CamelConversion: fix to not convert string values (#30595)
This commit is contained in:
parent
838f39e76a
commit
1ea0293878
2 changed files with 2 additions and 5 deletions
|
@ -51,7 +51,8 @@ foreach ($entry in $output_dict.GetEnumerator()) {
|
|||
Assert-Equals -actual $inner_list_hash.Name -expected $inner_list_hash.Value
|
||||
}
|
||||
} elseif ($inner_list -is [String]) {
|
||||
Assert-Equals -actual $inner_list -expected "string_two"
|
||||
# this is not a string key so we need to keep it the same
|
||||
Assert-Equals -actual $inner_list -expected "stringTwo"
|
||||
} else {
|
||||
Assert-Equals -actual $inner_list -expected 0
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue