From e455a0dd6af736e46cf83a893f2290aa9440ca71 Mon Sep 17 00:00:00 2001
From: Dmitry Jemerov <yole@jetbrains.com>
Date: Mon, 28 Sep 2015 12:27:05 +0200
Subject: update Dokka to M14

---
 test/src/model/FunctionTest.kt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'test/src')

diff --git a/test/src/model/FunctionTest.kt b/test/src/model/FunctionTest.kt
index fc3ebae5..9a5a67b4 100644
--- a/test/src/model/FunctionTest.kt
+++ b/test/src/model/FunctionTest.kt
@@ -191,10 +191,10 @@ Documentation""", content.description.toTestString())
 
     @Test fun annotatedFunctionWithAnnotationParameters() {
         verifyModel("test/data/functions/annotatedFunctionWithAnnotationParameters.kt") { model ->
-            with(model.members.single().members.single()) {
+            with(model.members.single().members.single { it.name == "f"}) {
                 assertEquals(1, annotations.count())
                 with(annotations[0]) {
-                    assertEquals("inlineOptions", name)
+                    assertEquals("Fancy", name)
                     assertEquals(Content.Empty, content)
                     assertEquals(DocumentationNode.Kind.Annotation, kind)
                     assertEquals(1, details.count())
@@ -203,7 +203,7 @@ Documentation""", content.description.toTestString())
                         assertEquals(1, details.count())
                         with(details[0]) {
                             assertEquals(DocumentationNode.Kind.Value, kind)
-                            assertEquals("[InlineOption.LOCAL_CONTINUE_AND_BREAK]", name)
+                            assertEquals("1", name)
                         }
                     }
                 }
-- 
cgit