[LC] fix PsiClassRenderer

This commit is contained in:
Dmitrii Gridin
2022-12-22 16:38:49 +01:00
committed by teamcity
parent 86bb9eeebc
commit 2e2e633113
224 changed files with 595 additions and 1143 deletions
@@ -103,11 +103,8 @@ abstract class AbstractSymbolLightClassesTestBase(
testServices: TestServices,
actual: String,
) {
if (currentResultPath().exists()) {
testServices.assertions.assertEqualsToFile(currentResultPath(), actual)
} else {
testServices.assertions.assertEqualsToFile(javaPath(), actual)
}
val path: Path = currentResultPath().takeIf { it.exists() } ?: javaPath()
testServices.assertions.assertEqualsToFile(path, actual)
}
private fun removeIgnoreFir(module: TestModule) {