[Test] Rename JsBackendDiagnosticsHandler -> KlibBackendDiagnosticsHandler

^KT-64393
This commit is contained in:
Dmitriy Dolovov
2024-02-27 16:14:58 +01:00
committed by Space Team
parent a4f2a4438b
commit b3efc05728
4 changed files with 7 additions and 7 deletions
@@ -9,7 +9,7 @@ import org.jetbrains.kotlin.test.model.BinaryArtifacts
import org.jetbrains.kotlin.test.model.TestModule
import org.jetbrains.kotlin.test.services.TestServices
class JsBackendDiagnosticsHandler(testServices: TestServices) : KlibArtifactHandler(testServices) {
class KlibBackendDiagnosticsHandler(testServices: TestServices) : KlibArtifactHandler(testServices) {
override fun processModule(module: TestModule, info: BinaryArtifacts.KLib) {
reportKtDiagnostics(module, info.reporter)
}