Skip to content

Commit ae23327

Browse files
committed
ktlint
1 parent fd2ea3f commit ae23327

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

aws-runtime/aws-config/common/test/aws/sdk/kotlin/runtime/config/auth/ResolveAuthSchemePreferenceTest.kt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class ResolveAuthSchemePreferenceTest {
2525
profileContent = """
2626
[default]
2727
auth_scheme_preference = sigv4
28-
""".trimIndent()
29-
).single()
28+
""".trimIndent(),
29+
).single(),
3030
)
3131
}
3232

@@ -40,8 +40,8 @@ class ResolveAuthSchemePreferenceTest {
4040
profileContent = """
4141
[default]
4242
auth_scheme_preference = sigv4
43-
""".trimIndent()
44-
).single()
43+
""".trimIndent(),
44+
).single(),
4545
)
4646
}
4747

@@ -56,8 +56,8 @@ class ResolveAuthSchemePreferenceTest {
5656
profileContent = """
5757
[default]
5858
auth_scheme_preference = sigv4
59-
""".trimIndent()
60-
).single()
59+
""".trimIndent(),
60+
).single(),
6161
)
6262
}
6363

@@ -67,7 +67,7 @@ class ResolveAuthSchemePreferenceTest {
6767
listOf(AuthSchemeId.HttpBearer, AuthSchemeId.AwsSigV4Asymmetric, AuthSchemeId.AwsSigV4),
6868
testResolveAuthSchemePreference(
6969
env = mapOf("AWS_AUTH_SCHEME_PREFERENCE" to "httpBearerAuth, sigv4a, sigv4"),
70-
)
70+
),
7171
)
7272
}
7373

@@ -77,7 +77,7 @@ class ResolveAuthSchemePreferenceTest {
7777
listOf(AuthSchemeId.HttpBearer, AuthSchemeId.AwsSigV4Asymmetric),
7878
testResolveAuthSchemePreference(
7979
env = mapOf("AWS_AUTH_SCHEME_PREFERENCE" to "httpBearerAuth , sigv4a "),
80-
)
80+
),
8181
)
8282
}
8383

@@ -87,7 +87,7 @@ class ResolveAuthSchemePreferenceTest {
8787
listOf(AuthSchemeId.HttpBearer, AuthSchemeId.AwsSigV4),
8888
testResolveAuthSchemePreference(
8989
env = mapOf("AWS_AUTH_SCHEME_PREFERENCE" to "httpBearerAuth, whatIsThisScheme, sigv4"),
90-
)
90+
),
9191
)
9292
}
9393

@@ -104,4 +104,4 @@ class ResolveAuthSchemePreferenceTest {
104104

105105
return resolveAuthSchemePreference(platform, profile)
106106
}
107-
}
107+
}

0 commit comments

Comments
 (0)