Fix tests after disabling trailing comma

#KT-34744
This commit is contained in:
Dmitry Gridin
2020-01-31 16:18:13 +07:00
parent 3fb34596ae
commit c34b417d0c
146 changed files with 612 additions and 945 deletions
@@ -12,16 +12,12 @@ fun test() {
fun test1() {
val abc = ArrayList<Int>()
.map(
{
it * 2
},
)
.filter(
{
it > 4
},
)
.map({
it * 2
})
.filter({
it > 4
})
}
fun test2() {
@@ -39,7 +35,7 @@ fun test3() {
fun test4() {
val abc = ArrayList<Int>().mapTo(
LinkedHashSet(),
LinkedHashSet()
) {
it * 2
}
@@ -56,3 +52,4 @@ fun testWithComments() {
}
// SET_TRUE: CONTINUATION_INDENT_FOR_CHAINED_CALLS
// SET_TRUE: ALLOW_TRAILING_COMMA