Fix compilation in AbstractAndroidBytecodeShapeTest.kt

This commit is contained in:
Alexander Udalov
2019-07-16 15:51:30 +02:00
parent 496765f41e
commit 8103f0ba60
@@ -20,6 +20,7 @@ import org.jetbrains.kotlin.codegen.AbstractBytecodeTextTest
import org.jetbrains.kotlin.config.CompilerConfiguration
import org.jetbrains.kotlin.test.ConfigurationKind
import org.jetbrains.kotlin.test.KotlinTestUtils
import org.jetbrains.kotlin.test.TargetBackend
import org.jetbrains.kotlin.test.TestJdkKind
abstract class AbstractAndroidBytecodeShapeTest : AbstractBytecodeTextTest() {
@@ -39,6 +40,6 @@ abstract class AbstractAndroidBytecodeShapeTest : AbstractBytecodeTextTest() {
loadFileByFullPath(fileName)
val expected = readExpectedOccurrences(fileName)
val actual = generateToText()
checkGeneratedTextAgainstExpectedOccurrences(actual, expected)
checkGeneratedTextAgainstExpectedOccurrences(actual, expected, TargetBackend.ANY)
}
}