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/main/kotlin/software/amazon/smithy/kotlin/codegen/aws/protocols/core/AwsHttpBindingProtocolGenerator.kt
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,13 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator()
39
39
// The following can be used to generate only a specific test by name.
40
40
// val targetedTest = TestMemberDelta(setOf("RestJsonComplexErrorWithNoMessage"), TestContainmentMode.RUN_TESTS)
41
41
42
+
val ignoredTests =TestMemberDelta(
43
+
setOf(
44
+
// This test requires populating blob members with a default value of "", which the sdk doesn't do
45
+
"AwsJson10ClientPopulatesDefaultValuesInInput",
46
+
),
47
+
)
48
+
42
49
val requestTestBuilder =HttpProtocolUnitTestRequestGenerator.Builder()
43
50
val responseTestBuilder =HttpProtocolUnitTestResponseGenerator.Builder()
44
51
val errorTestBuilder =HttpProtocolUnitTestErrorGenerator.Builder()
@@ -48,6 +55,7 @@ abstract class AwsHttpBindingProtocolGenerator : HttpBindingProtocolGenerator()
0 commit comments