Java to Kotlin converter: removed trim() in test output because it's not needed anymore

This commit is contained in:
Valentin Kipyatkov
2014-06-09 21:03:15 +04:00
parent 30ac2bacde
commit 00ed2f4955
@@ -109,7 +109,7 @@ abstract class AbstractJavaToKotlinConverterTest() : LightIdeaTestCase() {
val reformattedText = convertedFile.getText()!!
return if (inFunContext)
reformattedText.removeFirstLine().removeLastLine().trimIndent().trim()
reformattedText.removeFirstLine().removeLastLine().trimIndent()
else
reformattedText
}