Skip to content

Commit 548258a

Browse files
committed
format kotlin
1 parent fb20a72 commit 548258a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

feature-toggles/feature-toggles-impl/src/test/java/com/duckduckgo/feature/toggles/codegen/ContributesActivePluginPointCodeGeneratorTest.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ class ContributesActivePluginPointCodeGeneratorTest {
119119
)
120120
assertEquals(
121121
Toggle.DefaultFeatureValue.INTERNAL,
122-
clazzInternal.kotlin.java.methods.find { it.name == "pluginFooActiveInternalPlugin" }!!.getAnnotation(Toggle.DefaultValue::class.java)!!.defaultValue,
122+
clazzInternal.kotlin.java.methods.find {
123+
it.name == "pluginFooActiveInternalPlugin"
124+
}!!.getAnnotation(Toggle.DefaultValue::class.java)!!.defaultValue,
123125
)
124126

125127
val featureAnnotation = clazz.kotlin.java.getAnnotation(ContributesRemoteFeature::class.java)!!

0 commit comments

Comments
 (0)