Skip to content

Commit

Permalink
Adjust tests to codestyle produced by 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski committed Jun 4, 2024
1 parent 2e26e6c commit 59fc8bc
Showing 1 changed file with 27 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val value: Int)
data class CustomClass(
val value: Int,
)
""".trimIndent(),
)
Expand All @@ -281,7 +283,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val modified: Int)
data class CustomClass(
val modified: Int,
)
""".trimIndent(),
)
Expand All @@ -301,7 +305,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val modifiedEditorconfig: Int)
data class CustomClass(
val modifiedEditorconfig: Int,
)
""".trimIndent(),
)
Expand All @@ -313,7 +319,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"WrongFilename.kt",
"""
data class AnotherCustomClass(val modifiedEditorconfig: Int)
data class AnotherCustomClass(
val modifiedEditorconfig: Int,
)
""".trimIndent(),
)
Expand All @@ -338,7 +346,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val value: Int)
data class CustomClass(
val value: Int,
)
""".trimIndent(),
)
Expand All @@ -353,7 +363,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val modified: Int)
data class CustomClass(
val modified: Int,
)
""".trimIndent(),
)
Expand All @@ -373,7 +385,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"CustomClass.kt",
"""
data class CustomClass(val modifiedEditorconfig: Int)
data class CustomClass(
val modifiedEditorconfig: Int,
)
""".trimIndent(),
)
Expand All @@ -385,7 +399,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
kotlinSourceFile(
"WrongFilename.kt",
"""
data class AnotherCustomClass(val modifiedEditorconfig: Int)
data class AnotherCustomClass(
val modifiedEditorconfig: Int,
)
""".trimIndent(),
)
Expand All @@ -402,7 +418,9 @@ internal class KotlinProjectTest : WithGradleTest.Kotlin() {
"""
data class AnotherCustomClass(val modifiedEditorconfig: Int)
data class AnotherCustomClass(
val modifiedEditorconfig: Int,
)
""".trimIndent(),
)
Expand Down

0 comments on commit 59fc8bc

Please sign in to comment.