Browse Source

include an inherent bug in the test

pull/4573/head
jujumilk3 1 year ago
parent
commit
5bf577e563
  1. 9
      tests/test_dependency_schema_query.py

9
tests/test_dependency_schema_query.py

@ -378,6 +378,9 @@ def test_response():
"tax": 9.0,
"extra_optional_attributes": "alias_query",
}
if not PYDANTIC_V2:
expected_response.pop("extra_optional_attributes")
expected_response["extra_optional_attributes_alias"] = None
response = client.get(
"/item",
params={
@ -405,6 +408,9 @@ def test_response():
"tax": 9.0,
"extra_optional_attributes": "alias_query",
}
if not PYDANTIC_V2:
expected_response.pop("extra_optional_attributes")
expected_response["extra_optional_attributes_alias"] = None
response = client.get(
"/item",
params={
@ -432,6 +438,9 @@ def test_response():
"tax": 9.0,
"extra_optional_attributes": "alias_query",
}
if not PYDANTIC_V2:
expected_response.pop("extra_optional_attributes")
expected_response["extra_optional_attributes_alias"] = None
response = client.get(
"/item",
params={

Loading…
Cancel
Save