Browse Source

Fix OpenAPI test for body schema

pull/11/head
Sebastián Ramírez 6 years ago
parent
commit
3180f35bdd
  1. 3
      pyproject.toml
  2. 4
      tests/test_tutorial/test_body_schema/test_tutorial001.py

3
pyproject.toml

@ -35,7 +35,8 @@ test = [
"mypy", "mypy",
"black", "black",
"isort", "isort",
"requests" "requests",
"email_validator"
] ]
doc = [ doc = [
"mkdocs", "mkdocs",

4
tests/test_tutorial/test_body_schema/test_tutorial001.py

@ -107,8 +107,8 @@ openapi_schema = {
} }
def openapi_schema(): def test_openapi_schema():
response = client.put("/openapi.json") response = client.get("/openapi.json")
assert response.status_code == 200 assert response.status_code == 200
assert response.json() == openapi_schema assert response.json() == openapi_schema

Loading…
Cancel
Save