You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codegen/smithy-aws-kotlin-codegen/src/test/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGeneratorTest.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -139,14 +139,14 @@ class AwsHttpBindingProtocolGeneratorTest {
139
139
testCtx.generationCtx.delegator.finalize()
140
140
testCtx.generationCtx.delegator.flushWriters()
141
141
142
-
val expectedEnumSerializer ="input.value.enum?.let { addHeader(\"enum\", HeaderValue.String(it.value)) }"
143
-
val expectedIntEnumSerializer ="input.value.intEnum?.let { addHeader(\"intEnum\", HeaderValue.Int32(it.value)) }"
142
+
val expectedEnumSerializer ="""input.value.enum?.let { addHeader("enum", HeaderValue.String(it.value)) }"""
143
+
val expectedIntEnumSerializer ="""input.value.intEnum?.let { addHeader("intEnum", HeaderValue.Int32(it.value)) }"""
144
144
val actualSerializer = testCtx.manifest.expectFileString("src/main/kotlin/com/test/serde/TestStreamOpOperationSerializer.kt")
0 commit comments