I have an api example -
/get/userBundle
Request header - Accept = application/zip
Response assertion - status == 200.
If response status = 200, but response is NOT of type zip but json response or any other format, will the test fail without having any other assertion for response header or response body.
is it necessary to add assertion of response body to be zip or response header to be application/zip ? or response type is by default validated based on request header (Accept)