From 7e96b8b8fa1973248e8f2044678490ece88626a3 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Wed, 25 Feb 2026 18:38:54 +0100 Subject: [PATCH] Update snapshots to reflect latest changes in file param schema --- .../test_file/test_nullable_and_defaults.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_request_params/test_file/test_nullable_and_defaults.py b/tests/test_request_params/test_file/test_nullable_and_defaults.py index 7fb3f0edc2..7be333de2d 100644 --- a/tests/test_request_params/test_file/test_nullable_and_defaults.py +++ b/tests/test_request_params/test_file/test_nullable_and_defaults.py @@ -76,14 +76,14 @@ def test_nullable_required_schema(path: str): "properties": { "file": { "title": "File", - "anyOf": [{"type": "string", "format": "binary"}, {"type": "null"}], + "anyOf": [{"type": "string", "contentMediaType": "application/octet-stream"}, {"type": "null"}], }, "files": { "title": "Files", "anyOf": [ { "type": "array", - "items": {"type": "string", "format": "binary"}, + "items": {"type": "string", "contentMediaType": "application/octet-stream"}, }, {"type": "null"}, ], @@ -255,7 +255,7 @@ def test_nullable_non_required_schema(path: str): "properties": { "file": { "title": "File", - "anyOf": [{"type": "string", "format": "binary"}, {"type": "null"}], + "anyOf": [{"type": "string", "contentMediaType": "application/octet-stream"}, {"type": "null"}], # "default": None, # `None` values are omitted in OpenAPI schema }, "files": { @@ -263,7 +263,7 @@ def test_nullable_non_required_schema(path: str): "anyOf": [ { "type": "array", - "items": {"type": "string", "format": "binary"}, + "items": {"type": "string", "contentMediaType": "application/octet-stream"}, }, {"type": "null"}, ], @@ -399,7 +399,7 @@ def test_nullable_with_non_null_default_schema(path: str): "file": { "title": "File", "anyOf": [ - {"type": "string", "format": "binary"}, + {"type": "string", "contentMediaType": "application/octet-stream"}, {"type": "null"}, ], "default": "default", # <= Default value here looks strange to me @@ -409,7 +409,7 @@ def test_nullable_with_non_null_default_schema(path: str): "anyOf": [ { "type": "array", - "items": {"type": "string", "format": "binary"}, + "items": {"type": "string", "contentMediaType": "application/octet-stream"}, }, {"type": "null"}, ],