diff --git a/aws-auth-cognito/src/test/java/com/amplifyframework/auth/cognito/featuretest/generators/testcasegenerators/SignInTestCaseGenerator.kt b/aws-auth-cognito/src/test/java/com/amplifyframework/auth/cognito/featuretest/generators/testcasegenerators/SignInTestCaseGenerator.kt index 8bbabe82a0..a5eb5b284c 100644 --- a/aws-auth-cognito/src/test/java/com/amplifyframework/auth/cognito/featuretest/generators/testcasegenerators/SignInTestCaseGenerator.kt +++ b/aws-auth-cognito/src/test/java/com/amplifyframework/auth/cognito/featuretest/generators/testcasegenerators/SignInTestCaseGenerator.kt @@ -315,8 +315,7 @@ object SignInTestCaseGenerator : SerializableProvider { "password" to "", ).toJsonElement(), options = mapOf( - "signInOptions" to - mapOf("authFlow" to AuthFlowType.CUSTOM_AUTH_WITH_SRP.toString()) + "signInOptions" to mapOf("authFlow" to AuthFlowType.CUSTOM_AUTH_WITH_SRP.toString()) ).toJsonElement() ), validations = listOf( @@ -325,5 +324,7 @@ object SignInTestCaseGenerator : SerializableProvider { ) ) - override val serializables: List = listOf(baseCase, challengeCase, deviceSRPTestCase, customAuthCase, customAuthWithSRPCase) + override val serializables: List = listOf( + baseCase, challengeCase, deviceSRPTestCase, customAuthCase, customAuthWithSRPCase + ) }