Skip to content

Commit

Permalink
fix: Remove excessive print statement (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis authored Nov 21, 2023
1 parent c710c72 commit 94a4a19
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions services/sts/e2eTest/src/STSPresignerTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ package aws.sdk.kotlin.services.sts
import aws.sdk.kotlin.services.sts.model.GetCallerIdentityRequest
import aws.sdk.kotlin.services.sts.presigners.presignGetCallerIdentity
import aws.sdk.kotlin.testing.withAllEngines
import aws.smithy.kotlin.runtime.content.decodeToString
import aws.smithy.kotlin.runtime.http.SdkHttpClient
import aws.smithy.kotlin.runtime.http.complete
import aws.smithy.kotlin.runtime.http.toByteStream
import kotlinx.coroutines.runBlocking
import org.junit.jupiter.api.TestInstance
import kotlin.test.Test
Expand All @@ -32,8 +30,6 @@ class StsPresignerTest {

withAllEngines { engine ->
val httpClient = SdkHttpClient(engine)

println("Calling ${presignedRequest.method} ${presignedRequest.url}, body = ${presignedRequest.body.toByteStream()?.decodeToString()} headers ${presignedRequest.headers.entries().map { (k, v) -> "$k: ${v.joinToString(", ")}}" }.joinToString("; ")}")
val call = httpClient.call(presignedRequest)
call.complete()

Expand Down

0 comments on commit 94a4a19

Please sign in to comment.