aboutsummaryrefslogtreecommitdiff
path: root/test/src/TestAPI.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/src/TestAPI.kt')
-rw-r--r--test/src/TestAPI.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt
index a16a0b57..6f4e34c2 100644
--- a/test/src/TestAPI.kt
+++ b/test/src/TestAPI.kt
@@ -55,8 +55,9 @@ public fun verifyOutput(path: String, outputGenerator: (DocumentationModule, Str
verifyModel(path) {
val output = StringBuilder()
outputGenerator(it, output)
+ val trimmedOutput = output.toString().split('\n').map { it.trimTrailing() }.join("\n")
val expectedOutput = File(path.replace(".kt", ".md")).readText()
- assertEquals(expectedOutput, output.toString())
+ assertEquals(expectedOutput.trimTrailing(), trimmedOutput)
}
}