Skip to content

Commit 5e5c541

Browse files
committed
ktlint
1 parent 6bc63cf commit 5e5c541

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/util/SystemPlatformProviderTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class SystemPlatformProviderTest {
3737
fun testGetEnv() = runTest {
3838
val envVarKeys = listOf("PATH", "USERPROFILE") // PATH is not set on Windows CI
3939
assertNotNull(
40-
envVarKeys.firstNotNullOfOrNull { PlatformProvider.System.getenv(it) }
40+
envVarKeys.firstNotNullOfOrNull { PlatformProvider.System.getenv(it) },
4141
)
4242

4343
assertNull(PlatformProvider.System.getenv("THIS_ENV_VAR_IS_NOT_SET"))
@@ -50,7 +50,7 @@ class SystemPlatformProviderTest {
5050

5151
val envVarKeys = listOf("PATH", "USERPROFILE") // PATH is not set on Windows CI
5252
assertTrue(
53-
envVarKeys.any { allEnv.contains(it) }
53+
envVarKeys.any { allEnv.contains(it) },
5454
)
5555
}
5656

runtime/runtime-core/linuxX64/test/aws/smithy/kotlin/runtime/util/SystemPlatformProviderLinuxX64Test.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ class SystemPlatformProviderLinuxX64Test {
1919
fun definitelyShouldFail() = runTest {
2020
assertEquals(1, 2)
2121
}
22-
}
22+
}

0 commit comments

Comments
 (0)