IDEA-225301 Configure inspections via intellij configuration file

GitOrigin-RevId: 42d69e26985a7e01f9efecf3081c1e0eaf86ad4f
This commit is contained in:
Vladimir Krivosheev
2019-10-21 17:58:17 +02:00
committed by intellij-monorepo-bot
parent 962569e4bc
commit 2c31a6a3e4
14 changed files with 207 additions and 58 deletions

View File

@@ -28,7 +28,7 @@ class ComponentStateTest {
@Suppress("SameParameterValue")
private fun doReadComponentConfiguration(namePath: String, @Language("YAML") data: String): TestState? {
return readComponentConfiguration(findValueNodeByPath(namePath, doRead(data.trimIndent().reader())!!)!!, TestState::class.java)
return readComponentConfiguration(findValueNodeByPath(namePath, doRead(data.trimIndent().reader())!!.value)!!, TestState::class.java)
}
private class TestState : BaseState() {