Skip to content

Commit 7115a34

Browse files
committed
ktlint
1 parent a8a22da commit 7115a34

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ class SystemPlatformProviderTest {
1919

2020
val tempDir = if (ps.osInfo().family == OsFamily.Windows) {
2121
ps.getenv("TEMP") ?: "C:\\Windows\\Temp"
22-
} else { "/tmp" }
22+
} else {
23+
"/tmp"
24+
}
2325
val path = "$tempDir/testReadWriteFile-${Uuid.random()}.txt"
2426

2527
val expected = "Hello, File!".encodeToByteArray()

0 commit comments

Comments
 (0)