tests: apply official code style

#KT-38632 Fixed
This commit is contained in:
Dmitry Gridin
2020-04-28 15:51:57 +07:00
parent d8f9643650
commit 11a3482970
406 changed files with 1785 additions and 1525 deletions
@@ -4,8 +4,8 @@ interface I {
class CCCC(
over<caret>
private val v1: Int,
private val v2: Int
private val v1: Int,
private val v2: Int
) : I
// ELEMENT_TEXT: "override val p: Int"
@@ -3,9 +3,9 @@ interface I {
}
class CCCC(
override val p: Int<caret>
private val v1: Int,
private val v2: Int
override val p: Int<caret>
private val v1: Int,
private val v2: Int
) : I
// ELEMENT_TEXT: "override val p: Int"
@@ -115,8 +115,10 @@ class SmartEnterCompletionTest : KotlinLightCodeInsightFixtureTestCase() {
fun foo(p:Int) {}
fun test() {
foo(1 +
2)<caret>
foo(
1 +
2
)<caret>
}
"""
)