We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21eecef commit 43590aeCopy full SHA for 43590ae
tests/schema_test.py
@@ -161,7 +161,7 @@ def test_schema_type_string_format_byte_base64(with_schema_type_string_format_by
161
api = OpenAPI("/", with_schema_type_string_format_byte_base64)
162
b64 = api.components.schemas["Base64Property"].get_type()
163
RAW = "test"
164
- B64 = {"data": "dGVzdA==\n"}
+ B64 = {"data": "dGVzdA=="}
165
v = b64.model_validate(B64)
166
assert v.model_dump() == B64
167
assert v.data == RAW
0 commit comments