Browse Source

Update tests for OpenAPI header param models with convert_underscore

pull/13515/head
Sebastián Ramírez 2 weeks ago
parent
commit
b598a8d3bc
  1. 6
      tests/test_tutorial/test_header_param_models/test_tutorial001.py
  2. 6
      tests/test_tutorial/test_header_param_models/test_tutorial002.py

6
tests/test_tutorial/test_header_param_models/test_tutorial001.py

@ -129,13 +129,13 @@ def test_openapi_schema(client: TestClient):
"schema": {"type": "string", "title": "Host"},
},
{
"name": "save_data",
"name": "save-data",
"in": "header",
"required": True,
"schema": {"type": "boolean", "title": "Save Data"},
},
{
"name": "if_modified_since",
"name": "if-modified-since",
"in": "header",
"required": False,
"schema": IsDict(
@ -171,7 +171,7 @@ def test_openapi_schema(client: TestClient):
),
},
{
"name": "x_tag",
"name": "x-tag",
"in": "header",
"required": False,
"schema": {

6
tests/test_tutorial/test_header_param_models/test_tutorial002.py

@ -140,13 +140,13 @@ def test_openapi_schema(client: TestClient):
"schema": {"type": "string", "title": "Host"},
},
{
"name": "save_data",
"name": "save-data",
"in": "header",
"required": True,
"schema": {"type": "boolean", "title": "Save Data"},
},
{
"name": "if_modified_since",
"name": "if-modified-since",
"in": "header",
"required": False,
"schema": IsDict(
@ -182,7 +182,7 @@ def test_openapi_schema(client: TestClient):
),
},
{
"name": "x_tag",
"name": "x-tag",
"in": "header",
"required": False,
"schema": {

Loading…
Cancel
Save