From 7e572b6341bc7da3eeed4aef41665097ebad9f35 Mon Sep 17 00:00:00 2001 From: Andrzej Ratajczak Date: Tue, 29 Sep 2020 11:06:02 +0200 Subject: Fix failing tests --- .../test/kotlin/content/annotations/ContentForAnnotationsTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/base/src/test/kotlin/content/annotations') diff --git a/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt b/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt index bf78b847..d5779b61 100644 --- a/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt +++ b/plugins/base/src/test/kotlin/content/annotations/ContentForAnnotationsTest.kt @@ -132,7 +132,7 @@ class ContentForAnnotationsTest : AbstractCoreTest() { pagesTransformationStage = { module -> val page = module.children.single { it.name == "test" } as PackagePageNode page.content.assertNode { - propertySignature(emptyMap(), "", "", emptySet(), "val", "property", "Int") + propertySignature(emptyMap(), "", "", emptySet(), "val", "property", "Int", "6") } } } @@ -155,7 +155,7 @@ class ContentForAnnotationsTest : AbstractCoreTest() { pagesTransformationStage = { module -> val page = module.children.single { it.name == "test" } as PackagePageNode page.content.assertNode { - propertySignature(mapOf("Fancy" to emptySet()), "", "", emptySet(), "val", "property", "Int") + propertySignature(mapOf("Fancy" to emptySet()), "", "", emptySet(), "val", "property", "Int", "6") } } } @@ -212,7 +212,7 @@ class ContentForAnnotationsTest : AbstractCoreTest() { "reportedBy", "showStopper" ) - ), "", "", emptySet(), "val", "ltint", "Int" + ), "", "", emptySet(), "val", "ltint", "Int", "5" ) } } -- cgit