-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
queryParams in protocol compliance tests previously used a map of query string parameter names to values. However, this approach makes it impossible to define test cases for query string parameter lists where the serialized query string keys are repeated (which is the default serialization format used in Smithy HTTP protocol bindings). Now queryParams is a list of the query string parameter key value pairs (e.g., `queryParams: ["foo=bar", "foo=baz%20bam"]`. This allows for testing any kind of query string serialization format, including repeated key parameters.
- Loading branch information
Showing
4 changed files
with
56 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters