diff options
author | Krystian Ujma <krystianujma@gmail.com> | 2019-02-15 14:08:44 +0100 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2019-02-15 16:08:44 +0300 |
commit | c6da6b752c698085d176acc5b75cb14abcc32f80 (patch) | |
tree | a63f1b5798bab1eb75fda9fcac800503e3d0257b /core | |
parent | f640397b6395d00783d476dfa5a082a02fc9d924 (diff) | |
download | dokka-c6da6b752c698085d176acc5b75cb14abcc32f80.tar.gz dokka-c6da6b752c698085d176acc5b75cb14abcc32f80.tar.bz2 dokka-c6da6b752c698085d176acc5b75cb14abcc32f80.zip |
fix annotatedProperty test (#426)
Diffstat (limited to 'core')
-rw-r--r-- | core/src/test/kotlin/model/PropertyTest.kt | 2 | ||||
-rw-r--r-- | core/testdata/properties/annotatedProperty.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/test/kotlin/model/PropertyTest.kt b/core/src/test/kotlin/model/PropertyTest.kt index 0ee0e0f5..296eaa4c 100644 --- a/core/src/test/kotlin/model/PropertyTest.kt +++ b/core/src/test/kotlin/model/PropertyTest.kt @@ -69,7 +69,7 @@ class PropertyTest { with(model.members.single().members.single()) { assertEquals(1, annotations.count()) with(annotations[0]) { - assertEquals("Volatile", name) + assertEquals("Strictfp", name) assertEquals(Content.Empty, content) assertEquals(NodeKind.Annotation, kind) } diff --git a/core/testdata/properties/annotatedProperty.kt b/core/testdata/properties/annotatedProperty.kt index 8990af29..3c12691b 100644 --- a/core/testdata/properties/annotatedProperty.kt +++ b/core/testdata/properties/annotatedProperty.kt @@ -1 +1 @@ -@Volatile var property = "test"
\ No newline at end of file +@Strictfp var property = "test"
\ No newline at end of file |