Skip to content

Commit

Permalink
Add missing colon
Browse files Browse the repository at this point in the history
  • Loading branch information
Pawel Pasterz committed Apr 16, 2020
1 parent b1ee7da commit b71ecfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ internal class YamlWriter {
if (config.otherFiles.isNotEmpty()) {
appendln(" other-files:")
config.otherFiles.forEach {
appendln(" ${it.key} ${it.value}")
appendln(" ${it.key}: ${it.value}")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,8 @@ class YamlWriterTest {

assertTrue(properties.contains("""
| other-files:
| /example/path/test1 anyfile.txt
| /example/path/test2 anyfile2.txt
| /example/path/test1: anyfile.txt
| /example/path/test2: anyfile2.txt
""".trimMargin()))
}

Expand Down

0 comments on commit b71ecfc

Please sign in to comment.