Skip to content

Commit

Permalink
Add empty end-line to generated plantuml file
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-goral committed Jul 24, 2021
1 parent 93d2c0b commit 1c0a4bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion corellium/domain/TestAndroid-execute.puml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ end note
[PrepareShards] --> [ParseTestCases]
[PrepareShards] --> [LoadPreviousDurations]

@enduml
@enduml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fun Any.generatePlanUml(
dir: String = ""
): File = generatePlanUmlFile(
tasks = tasks,
path = File(dir, javaClass.simpleName).absolutePath + "-execute.puml",
path = File(dir).resolve(javaClass.simpleName).absolutePath + "-execute.puml",
prefixToRemove = javaClass.name
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ${colors.printColors(name)}
${graph.printRelations(name)}
@enduml
""".trimIndent()
}

Expand Down

0 comments on commit 1c0a4bf

Please sign in to comment.