Fixed func ToString and test case

This commit is contained in:
2022-09-17 12:22:17 -04:00
parent 49eb7f9b9d
commit 77acfd1cf2
2 changed files with 9 additions and 7 deletions

View File

@@ -76,7 +76,9 @@ func (values ObjectDefaultValues) ToString (
output += doIndent(indent, "(")
if breakLine { output += "\n" }
for _, name := range sortMapKeysAlphabetically(values) {
for index, name := range sortMapKeysAlphabetically(values) {
if index > 0 && !breakLine { output += " " }
value := values[name]
output += doIndent(indent, "." + name + ":")
@@ -109,7 +111,8 @@ func (values ArrayDefaultValues) ToString (
output += doIndent(indent, "<")
if breakLine { output += "\n" }
for _, value := range values {
for index, value := range values {
if index > 0 && !breakLine { output += " " }
output += value.ToString(indent, breakLine)
}