Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions smithy-aws-protocol-tests/model/restJson1/http-query.smithy
Original file line number Diff line number Diff line change
Expand Up @@ -414,22 +414,12 @@ apply IgnoreQueryParamsInResponse @httpResponseTests([
headers: {
"Content-Type": "application/json"
},
body: "{}",
body: "{\"baz\":\"bam\"}",
bodyMediaType: "application/json",
params: {}
},
{
id: "RestJsonIgnoreQueryParamsInResponseNoPayload",
documentation: """
This test is similar to RestJsonIgnoreQueryParamsInResponse,
but it ensures that clients gracefully handle responses from
the server that do not serialize an empty JSON object.""",
protocol: restJson1,
code: 200,
body: "",
params: {},
appliesTo: "client",
},
params: {
baz: "bam"
}
}
])

structure IgnoreQueryParamsInResponseOutput {
Expand Down
Loading