From 484b3e557c1a5857185ccf535bbec9469cb0225a Mon Sep 17 00:00:00 2001 From: Anshul Gupta Date: Thu, 15 Dec 2022 12:22:08 -0600 Subject: [PATCH] ktlint --- .../testcasegenerators/SignInTestCaseGenerator.kt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 + ) }