diff options
Diffstat (limited to 'core/src/test/kotlin/model/PropertyTest.kt')
-rw-r--r-- | core/src/test/kotlin/model/PropertyTest.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/kotlin/model/PropertyTest.kt b/core/src/test/kotlin/model/PropertyTest.kt index b3481265..9f070862 100644 --- a/core/src/test/kotlin/model/PropertyTest.kt +++ b/core/src/test/kotlin/model/PropertyTest.kt @@ -95,7 +95,7 @@ abstract class BasePropertyTest(val analysisPlatform: Platform) { @Test fun sinceKotlin() { checkSourceExistsAndVerifyModel("testdata/properties/sinceKotlin.kt", defaultModelConfig) { model -> with(model.members.single().members.single()) { - assertEquals(listOf("Kotlin 1.1"), platforms) + assertEquals("1.1", sinceKotlin) } } } |