File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
kmp-library/src/test/kotlin Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ import proguard.testutils.KotlinSource
88class PrimitiveInAnnotationTest : FunSpec ({
99 test("Primitive type class in annotation") {
1010 val (programClassPool, _ ) = ClassPoolBuilder .fromSource(
11- KotlinSource (
12- "Test .kt",
13- """
11+ KotlinSource (
12+ "Test .kt",
13+ """
1414 import kotlin.reflect.KClass
1515
1616 @Target (AnnotationTarget .CLASS )
@@ -22,15 +22,15 @@ class PrimitiveInAnnotationTest : FunSpec({
2222 var myInt: Int = 0
2323 }
2424 """.trimIndent()
25- ),
25+ ),
2626 )
2727
2828 programClassPool.classesAccept(
29- ReferencedKotlinMetadataVisitor (
30- KotlinMetadataPrinter (
31- programClassPool
32- )
29+ ReferencedKotlinMetadataVisitor (
30+ KotlinMetadataPrinter (
31+ programClassPool
3332 )
33+ )
3434 )
3535
3636 val testKtMetadata = programClassPool.getClass("Test ").processingInfo as String
@@ -52,4 +52,4 @@ class PrimitiveInAnnotationTest : FunSpec({
5252 }
5353 """ .trimIndent()
5454 }
55- })
55+ })
You can’t perform that action at this time.
0 commit comments