From 95d7debb69eb91b0afe90524d4e1c70f8d85deff Mon Sep 17 00:00:00 2001 From: Matas Lauzadis Date: Wed, 30 Oct 2024 13:14:08 -0400 Subject: [PATCH] remove stray println --- .../amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt | 2 -- .../aws/smithy/kotlin/runtime/serde/xml/XmlStreamReaderTest.kt | 1 - 2 files changed, 3 deletions(-) diff --git a/codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt b/codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt index a6ac9f5de..f31f749fd 100644 --- a/codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt +++ b/codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/RpcV2CborTest.kt @@ -64,7 +64,6 @@ class RpcV2CborTest { ctx.generationCtx.delegator.flushWriters() val actual = ctx.manifest.expectFileString("/src/main/kotlin/com/test/DefaultTestClient.kt") - println(actual) val getFooMethod = actual.lines(" override suspend fun getFoo(input: GetFooRequest): GetFooResponse {", " }") val expectedHeaderMutation = """ @@ -88,7 +87,6 @@ class RpcV2CborTest { ctx.generationCtx.delegator.flushWriters() val actual = ctx.manifest.expectFileString("/src/main/kotlin/com/test/DefaultTestClient.kt") - println(actual) val getFooMethod = actual.lines(" override suspend fun getFooStreaming(input: GetFooStreamingRequest, block: suspend (GetFooStreamingResponse) -> T): T {", " }") val expectedHeaderMutation = """ diff --git a/runtime/serde/serde-xml/common/test/aws/smithy/kotlin/runtime/serde/xml/XmlStreamReaderTest.kt b/runtime/serde/serde-xml/common/test/aws/smithy/kotlin/runtime/serde/xml/XmlStreamReaderTest.kt index 26f129c8e..02c575d00 100644 --- a/runtime/serde/serde-xml/common/test/aws/smithy/kotlin/runtime/serde/xml/XmlStreamReaderTest.kt +++ b/runtime/serde/serde-xml/common/test/aws/smithy/kotlin/runtime/serde/xml/XmlStreamReaderTest.kt @@ -108,7 +108,6 @@ class XmlStreamReaderTest { """.trimIndent().encodeToByteArray() val actual = xmlStreamReader(payload).allTokens() - println(actual) assertEquals(6, actual.size) assertIs(actual.first())