aboutsummaryrefslogtreecommitdiff
path: root/test/src/model
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-05-29 13:52:43 +0200
committerDmitry Jemerov <yole@jetbrains.com>2015-05-29 13:52:43 +0200
commit64414ce984bc86e09b8724adbd01f1cb2646c17e (patch)
tree802710da5009b0b86519cc7cde9cdb6685cc7c99 /test/src/model
parent2fc80c4aae0d2957b34b176b9a2a48cb5089f41c (diff)
downloaddokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.tar.gz
dokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.tar.bz2
dokka-64414ce984bc86e09b8724adbd01f1cb2646c17e.zip
apply code cleanup; fix couple of deprecations manually
Diffstat (limited to 'test/src/model')
-rw-r--r--test/src/model/JavaTest.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/model/JavaTest.kt b/test/src/model/JavaTest.kt
index cef548c3..3129bcc0 100644
--- a/test/src/model/JavaTest.kt
+++ b/test/src/model/JavaTest.kt
@@ -12,7 +12,7 @@ public class JavaTest {
with(cls.members.single()) {
assertEquals("fn", name)
assertEquals(DocumentationNode.Kind.Function, kind)
- assertEquals("Summary for Function", content.summary.toTestString().trimTrailing())
+ assertEquals("Summary for Function", content.summary.toTestString().trimEnd())
assertEquals(3, content.sections.size())
with(content.sections[0]) {
assertEquals("Parameters", tag)