diff --git a/idea/testData/intentions/loopToCallChain/firstOrNull_ifAssign_preserveComments.kt.after b/idea/testData/intentions/loopToCallChain/firstOrNull_ifAssign_preserveComments.kt.after index 0f6c87ba17d..17e2570e368 100644 --- a/idea/testData/intentions/loopToCallChain/firstOrNull_ifAssign_preserveComments.kt.after +++ b/idea/testData/intentions/loopToCallChain/firstOrNull_ifAssign_preserveComments.kt.after @@ -1,8 +1,9 @@ // WITH_RUNTIME // INTENTION_TEXT: "Replace with 'firstOrNull{}'" fun foo(list: List) { - val result: String? = list.firstOrNull { // search for first non-empty string in the list - it.length > 0 - }// string should be non-empty + // string should be non-empty // save it into result + val result: String? = list.firstOrNull { // search for first non-empty string in the list + it.length > 0 + } } \ No newline at end of file