We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP allows multiple headers/queries with the same name to be sent, as well as for there to be null values - eg. /path?query=1&query&query=3
/path?query=1&query&query=3
This is problematic if we are capturing things like Cookie headers which are often sent in multiple entities.
The types inside the Specmatic codebase only support Map<String, String> instead of Map<String, List<String?>.
Map<String, String>
Map<String, List<String?>
The text was updated successfully, but these errors were encountered:
Thanks for reporting this @daviddenton. We'll have a look at this and get back to you.
Sorry, something went wrong.
bump
vikram-rao
No branches or pull requests
HTTP allows multiple headers/queries with the same name to be sent, as well as for there to be null values - eg.
/path?query=1&query&query=3
This is problematic if we are capturing things like Cookie headers which are often sent in multiple entities.
The types inside the Specmatic codebase only support
Map<String, String>
instead ofMap<String, List<String?>
.The text was updated successfully, but these errors were encountered: