Skip to content

Commit

Permalink
Disable broken default value tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelkins committed Dec 19, 2024
1 parent 915dd19 commit f8bb92b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ class AWSJSON1_0ProtocolGenerator : AWSHTTPBindingProtocolGenerator(AWSJSONCusto
override val protocolTestsToIgnore = setOf(
"SDKAppliedContentEncoding_awsJson1_0",
"SDKAppendsGzipAndIgnoresHttpProvidedEncoding_awsJson1_0",
"AwsJson10ClientPopulatesDefaultValuesInInput", // TODO: broken in Smithy 1.53.0
"AwsJson10ClientPopulatesDefaultsValuesWhenMissingInResponse", // TODO: broken in Smithy 1.53.0
)
override fun getProtocolHttpBindingResolver(ctx: ProtocolGenerator.GenerationContext, defaultContentType: String):
HttpBindingResolver = AWSJSONHttpBindingResolver(ctx, defaultContentType)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ class AWSRestJson1ProtocolGenerator : AWSHTTPBindingProtocolGenerator(RestJSONCu
override val protocolTestsToIgnore = setOf(
"SDKAppliedContentEncoding_restJson1",
"SDKAppendedGzipAfterProvidedEncoding_restJson1",
"RestJsonClientPopulatesDefaultValuesInInput", // TODO: broken in Smithy 1.53.0
"RestJsonClientPopulatesDefaultsValuesWhenMissingInResponse", // TODO: broken in Smithy 1.53.0
)
}

0 comments on commit f8bb92b

Please sign in to comment.