Skip to content

Commit 94a4a19

Browse files
authored
fix: Remove excessive print statement (#1126)
1 parent c710c72 commit 94a4a19

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

services/sts/e2eTest/src/STSPresignerTest.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ package aws.sdk.kotlin.services.sts
77
import aws.sdk.kotlin.services.sts.model.GetCallerIdentityRequest
88
import aws.sdk.kotlin.services.sts.presigners.presignGetCallerIdentity
99
import aws.sdk.kotlin.testing.withAllEngines
10-
import aws.smithy.kotlin.runtime.content.decodeToString
1110
import aws.smithy.kotlin.runtime.http.SdkHttpClient
1211
import aws.smithy.kotlin.runtime.http.complete
13-
import aws.smithy.kotlin.runtime.http.toByteStream
1412
import kotlinx.coroutines.runBlocking
1513
import org.junit.jupiter.api.TestInstance
1614
import kotlin.test.Test
@@ -32,8 +30,6 @@ class StsPresignerTest {
3230

3331
withAllEngines { engine ->
3432
val httpClient = SdkHttpClient(engine)
35-
36-
println("Calling ${presignedRequest.method} ${presignedRequest.url}, body = ${presignedRequest.body.toByteStream()?.decodeToString()} headers ${presignedRequest.headers.entries().map { (k, v) -> "$k: ${v.joinToString(", ")}}" }.joinToString("; ")}")
3733
val call = httpClient.call(presignedRequest)
3834
call.complete()
3935

0 commit comments

Comments
 (0)