diff options
author | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-07-27 16:11:36 +0300 |
---|---|---|
committer | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-07-27 16:33:10 +0300 |
commit | 87edf7c5778a9e1ac3e17c9046110d69e8d197a6 (patch) | |
tree | 34cc927f19b0cf7149c502e0c04249cc6663c81f /test/src | |
parent | befbe69c3863b1048b585e795ec2f99d5a10390e (diff) | |
download | dokka-87edf7c5778a9e1ac3e17c9046110d69e8d197a6.tar.gz dokka-87edf7c5778a9e1ac3e17c9046110d69e8d197a6.tar.bz2 dokka-87edf7c5778a9e1ac3e17c9046110d69e8d197a6.zip |
Eliminate warnings caused by API changes
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/markdown/MarkdownTestRunner.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/markdown/MarkdownTestRunner.kt b/test/src/markdown/MarkdownTestRunner.kt index 867deece..5ad0224f 100644 --- a/test/src/markdown/MarkdownTestRunner.kt +++ b/test/src/markdown/MarkdownTestRunner.kt @@ -23,7 +23,7 @@ interface MarkdownTest { } public open class MarkdownTestCase(val spec: MarkdownSpecification, val input: String, val expected: String) : MarkdownTest, Runner() { - val _description by Delegates.lazy { + val _description by lazy { Description.createSuiteDescription(input, MarkdownTestUniqueId.next())!! } @@ -45,7 +45,7 @@ public open class MarkdownTestCase(val spec: MarkdownSpecification, val input: S public open class MarkdownTestSection(val spec: MarkdownSpecification, val title: String) : MarkdownTest, ParentRunner<MarkdownTest>(spec.javaClass) { val children = arrayListOf<MarkdownTest>(); - val _description by Delegates.lazy { + val _description by lazy { val desc = Description.createSuiteDescription(title, MarkdownTestUniqueId.next())!! for (item in getChildren()!!) { desc.addChild(describeChild(item)) |