diff --git a/base/src/test/kotlin/proguard/obfuscate/AnnotationTest.kt b/base/src/test/kotlin/proguard/obfuscate/AnnotationTest.kt index 56e04523..e4e8fefc 100644 --- a/base/src/test/kotlin/proguard/obfuscate/AnnotationTest.kt +++ b/base/src/test/kotlin/proguard/obfuscate/AnnotationTest.kt @@ -18,26 +18,30 @@ class AnnotationTest : FreeSpec({ boolean testBoolean2() default true; String testString1() default ""; } - """.trimIndent() + """.trimIndent(), ), ) val testClass = programClassPool.getClass("Test") as ProgramClass - + "Annotation members should be excluded from aggressive overloading" { val descriptorMap = HashMap>() - - testClass.methodsAccept(MemberObfuscator( - true, - SimpleNameFactory(), - descriptorMap - )) - - descriptorMap shouldBeEqual mapOf( - "()" to mapOf( - "a" to "testBoolean1", - "b" to "testBoolean2", - "c" to "testString1", + + testClass.methodsAccept( + MemberObfuscator( + true, + SimpleNameFactory(), + descriptorMap, ), ) + + descriptorMap shouldBeEqual + mapOf( + "()" to + mapOf( + "a" to "testBoolean1", + "b" to "testBoolean2", + "c" to "testString1", + ), + ) } -}) \ No newline at end of file +})