Skip to content

Commit

Permalink
Remove not necessary TCs
Browse files Browse the repository at this point in the history
  • Loading branch information
atulgpt committed May 20, 2023
1 parent 2d51a69 commit bf9eb22
Showing 1 changed file with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,17 +173,9 @@ class PropertyNamingRuleTest {
}
class Foo2 {
companion object {
private val serialVersionUID: Long = 123
private const val serialVersionUID = 123L
}
}
class Foo3 {
companion object {
@JvmStatic private val serialVersionUID: Long = 123
}
}
class Foo4 {
private val serialVersionUID: Long = 123
}
""".trimIndent()
propertyNamingRuleAssertThat(code).hasNoLintViolations()
}
Expand All @@ -196,10 +188,7 @@ class PropertyNamingRuleTest {
private const val serialVersionUID: Long = 123
}
object Foo2 {
private val serialVersionUID: Long = 123
}
object Foo3 {
@JvmStatic private val serialVersionUID: Long = 123
private const val serialVersionUID = 123L
}
""".trimIndent()
propertyNamingRuleAssertThat(code).hasNoLintViolations()
Expand Down

0 comments on commit bf9eb22

Please sign in to comment.