test(proxy): assert non-Bedrock passthrough stream emits no content-type header

This commit is contained in:
mateo-berri 2026-08-17 13:09:17 -07:00
parent 8ced9f56a1
commit f86dc8f54e

View file

@ -4564,7 +4564,7 @@ class TestAllmPassthroughStreamingProviderGate:
assert isinstance(result, StreamingResponse)
assert result.media_type is None
assert result.headers.get("content-type") != "application/vnd.amazon.eventstream"
assert "content-type" not in result.headers
class TestResponseCostHeaderForTypedDictResponses: