Skip to content

Commit

Permalink
remove stray println
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Oct 30, 2024
1 parent 9473ee1 commit 95d7deb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = """
Expand All @@ -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 <T> getFooStreaming(input: GetFooStreamingRequest, block: suspend (GetFooStreamingResponse) -> T): T {", " }")

val expectedHeaderMutation = """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ class XmlStreamReaderTest {
""".trimIndent().encodeToByteArray()

val actual = xmlStreamReader(payload).allTokens()
println(actual)

assertEquals(6, actual.size)
assertIs<XmlToken.BeginElement>(actual.first())
Expand Down

0 comments on commit 95d7deb

Please sign in to comment.