Skip to content

Commit

Permalink
Rename CheckTestNonCompilingImpl to DefaultCheckTestNonCompiling (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwan-serandour authored Nov 27, 2023
1 parent 47b8384 commit f8e1a28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
package org.sonarsource.kotlin.checks

internal class AbstractClassShouldBeInterfaceCheckTest : CheckTest(AbstractClassShouldBeInterfaceCheck()),
CheckTestNonCompiling by CheckTestNonCompilingImpl(AbstractClassShouldBeInterfaceCheck())
CheckTestNonCompiling by DefaultCheckTestNonCompiling(AbstractClassShouldBeInterfaceCheck())
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interface CheckTestNonCompiling {
fun `non compiling`()
}

class CheckTestNonCompilingImpl(
class DefaultCheckTestNonCompiling(
val check: AbstractCheck,
private val sampleFileNonCompiling: String? = null,
private val shouldReport: Boolean = false,
Expand Down

0 comments on commit f8e1a28

Please sign in to comment.