diff --git a/idea/testData/copyPaste/plainTextConversion/IntoRawStringLiteral.expected.kt b/idea/testData/copyPaste/plainTextConversion/IntoRawStringLiteral.expected.kt index 184fc0803a4..3f3cc7ac62c 100644 --- a/idea/testData/copyPaste/plainTextConversion/IntoRawStringLiteral.expected.kt +++ b/idea/testData/copyPaste/plainTextConversion/IntoRawStringLiteral.expected.kt @@ -2,6 +2,5 @@ fun foo() { val v = """ ArrayList list = new ArrayList(); // NO_CONVERSION_EXPECTED - """ } diff --git a/idea/testData/copyPaste/plainTextConversion/IntoStringLiteral.expected.kt b/idea/testData/copyPaste/plainTextConversion/IntoStringLiteral.expected.kt index 81764d82f77..bf4af898571 100644 --- a/idea/testData/copyPaste/plainTextConversion/IntoStringLiteral.expected.kt +++ b/idea/testData/copyPaste/plainTextConversion/IntoStringLiteral.expected.kt @@ -1,5 +1,4 @@ fun foo() { - val v = "ArrayList list = new ArrayList(); -// NO_CONVERSION_EXPECTED - " + val v = "ArrayList list = new ArrayList();\n" + + "// NO_CONVERSION_EXPECTED" } diff --git a/idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuote.expected.kt b/idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.expected.kt similarity index 100% rename from idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuote.expected.kt rename to idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.expected.kt diff --git a/idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuote.kt b/idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.kt similarity index 100% rename from idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuote.kt rename to idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.kt diff --git a/idea/testData/copyPaste/plainTextLiteral/MultiLinetoTripleQuote.txt b/idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.txt similarity index 100% rename from idea/testData/copyPaste/plainTextLiteral/MultiLinetoTripleQuote.txt rename to idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.txt diff --git a/idea/tests/org/jetbrains/kotlin/idea/conversion/copy/LiteralTextToKotlinCopyPasteTestGenerated.java b/idea/tests/org/jetbrains/kotlin/idea/conversion/copy/LiteralTextToKotlinCopyPasteTestGenerated.java index 4dcc40f54c9..17bf4e81daa 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/conversion/copy/LiteralTextToKotlinCopyPasteTestGenerated.java +++ b/idea/tests/org/jetbrains/kotlin/idea/conversion/copy/LiteralTextToKotlinCopyPasteTestGenerated.java @@ -48,9 +48,9 @@ public class LiteralTextToKotlinCopyPasteTestGenerated extends AbstractLiteralTe doTest(fileName); } - @TestMetadata("MultiLinetoTripleQuote.txt") - public void testMultiLinetoTripleQuote() throws Exception { - String fileName = KotlinTestUtils.navigationMetadata("idea/testData/copyPaste/plainTextLiteral/MultiLinetoTripleQuote.txt"); + @TestMetadata("MultiLineToTripleQuotes.txt") + public void testMultiLineToTripleQuotes() throws Exception { + String fileName = KotlinTestUtils.navigationMetadata("idea/testData/copyPaste/plainTextLiteral/MultiLineToTripleQuotes.txt"); doTest(fileName); }