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
Note that consumes only affects operations with a request body, such as POST, PUT and PATCH. It is ignored for bodiless operations like GET.
Hence, this library shouldn't verify consumes for GET and DELETE and failures like below should be ignored.
The following 6 assertions failed:
1) [Checking 'consumes' of 'GET' operation of path '/v1/failure-messages']
Expecting:
<["*/*"]>
to contain only:
<["application/json"]>
elements not found:
<["application/json"]>
and elements not expected:
<["*/*"]>
The text was updated successfully, but these errors were encountered:
(I know this project is looking for a new maintainer but we can still report issues in the meantime)
As per https://swagger.io/docs/specification/2-0/mime-types/
Hence, this library shouldn't verify
consumes
for GET and DELETE and failures like below should be ignored.The text was updated successfully, but these errors were encountered: