Removed runes from the test case

This commit is contained in:
2022-10-04 17:13:08 -04:00
parent b6d3c04acd
commit c7e6c9299a
5 changed files with 12 additions and 12 deletions

View File

@@ -34,16 +34,16 @@ func (tree SyntaxTree) ToString (indent int) (output string) {
output += doIndent(indent, ":arf\n")
if tree.author != "" {
output += doIndent(indent, "author \"", tree.author, "\"\n")
output += doIndent(indent, "author '", tree.author, "'\n")
}
if tree.license != "" {
output += doIndent(indent, "license \"", tree.license, "\"\n")
output += doIndent(indent, "license '", tree.license, "'\n")
}
for _, name := range sortMapKeysAlphabetically(tree.requires) {
require := tree.requires[name]
output += doIndent(indent, "require \"", require, "\"\n")
output += doIndent(indent, "require '", require, "'\n")
}
output += doIndent(indent, "---\n")