From 54dee60b9cde7fc1fd808b19bc922e235fd90c04 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 19 Sep 2014 22:25:44 +0300 Subject: Update tests to work with RichString. --- test/data/comments/emptySection.kt | 2 +- test/data/comments/emptySectionOnOneLine.kt | 2 +- test/data/comments/multilineSection.kt | 2 +- test/data/comments/section1.kt | 2 +- test/data/comments/section2.kt | 4 ++-- test/data/comments/sectionOnOneLine.kt | 2 +- test/data/comments/sectionWithBracedLabel.kt | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'test/data') diff --git a/test/data/comments/emptySection.kt b/test/data/comments/emptySection.kt index 0e618b2a..7112c578 100644 --- a/test/data/comments/emptySection.kt +++ b/test/data/comments/emptySection.kt @@ -1,6 +1,6 @@ /** * Summary - * $one + * $one: */ val property = "test" \ No newline at end of file diff --git a/test/data/comments/emptySectionOnOneLine.kt b/test/data/comments/emptySectionOnOneLine.kt index 4bb6c6f6..b0d5defd 100644 --- a/test/data/comments/emptySectionOnOneLine.kt +++ b/test/data/comments/emptySectionOnOneLine.kt @@ -1,2 +1,2 @@ -/** Summary $one*/ +/** Summary $one:*/ val property = "test" \ No newline at end of file diff --git a/test/data/comments/multilineSection.kt b/test/data/comments/multilineSection.kt index be83b641..514348cd 100644 --- a/test/data/comments/multilineSection.kt +++ b/test/data/comments/multilineSection.kt @@ -1,6 +1,6 @@ /** * Summary - * $one + * $one: * line one * line two */ diff --git a/test/data/comments/section1.kt b/test/data/comments/section1.kt index 0a27d394..e4c9adf4 100644 --- a/test/data/comments/section1.kt +++ b/test/data/comments/section1.kt @@ -1,5 +1,5 @@ /** * Summary - * $one section one + * $one: section one */ val property = "test" \ No newline at end of file diff --git a/test/data/comments/section2.kt b/test/data/comments/section2.kt index a34aa853..e0a35551 100644 --- a/test/data/comments/section2.kt +++ b/test/data/comments/section2.kt @@ -1,6 +1,6 @@ /** * Summary - * $one section one - * $two section two + * $one: section one + * $two: section two */ val property = "test" \ No newline at end of file diff --git a/test/data/comments/sectionOnOneLine.kt b/test/data/comments/sectionOnOneLine.kt index cab5c69c..8bd3dd64 100644 --- a/test/data/comments/sectionOnOneLine.kt +++ b/test/data/comments/sectionOnOneLine.kt @@ -1,2 +1,2 @@ -/** Summary $one same line */ +/** Summary $one: same line */ val property = "test" \ No newline at end of file diff --git a/test/data/comments/sectionWithBracedLabel.kt b/test/data/comments/sectionWithBracedLabel.kt index 306917ec..aa8dbfe6 100644 --- a/test/data/comments/sectionWithBracedLabel.kt +++ b/test/data/comments/sectionWithBracedLabel.kt @@ -1,5 +1,5 @@ /** * Summary - * ${this.label.is.really.long} section one + * ${this.label.is.really.long}: section one */ val property = "test" \ No newline at end of file -- cgit