We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8a22da commit 7115a34Copy full SHA for 7115a34
runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/util/SystemPlatformProviderTest.kt
@@ -19,7 +19,9 @@ class SystemPlatformProviderTest {
19
20
val tempDir = if (ps.osInfo().family == OsFamily.Windows) {
21
ps.getenv("TEMP") ?: "C:\\Windows\\Temp"
22
- } else { "/tmp" }
+ } else {
23
+ "/tmp"
24
+ }
25
val path = "$tempDir/testReadWriteFile-${Uuid.random()}.txt"
26
27
val expected = "Hello, File!".encodeToByteArray()
0 commit comments