Quick-fix "use spread operator": make working with mapOf #KT-14556 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-04-10 07:53:24 +03:00
committed by Mikhail Glukhikh
parent a7110a1517
commit 5204c73bec
5 changed files with 30 additions and 22 deletions
@@ -1717,11 +1717,6 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/mapOf.kt");
}
@TestMetadata("mapOfBug.kt")
public void testMapOfBug() throws Exception {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/mapOfBug.kt");
}
@TestMetadata("multipleParams.kt")
public void testMultipleParams() throws Exception {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/multipleParams.kt");
@@ -1742,6 +1737,11 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/normal.kt");
}
@TestMetadata("stdlibMapOf.kt")
public void testStdlibMapOf() throws Exception {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/stdlibMapOf.kt");
}
@TestMetadata("vararg.kt")
public void testVararg() throws Exception {
runTest("idea/testData/quickfix/changeToUseSpreadOperator/vararg.kt");