From 3180f35bdd88a67294d2f1937973c09628b2109a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 22 Dec 2018 09:00:58 +0400 Subject: [PATCH] :white_check_mark: Fix OpenAPI test for body schema --- pyproject.toml | 3 ++- tests/test_tutorial/test_body_schema/test_tutorial001.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d2c8116d8..bb91f789d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,8 @@ test = [ "mypy", "black", "isort", - "requests" + "requests", + "email_validator" ] doc = [ "mkdocs", diff --git a/tests/test_tutorial/test_body_schema/test_tutorial001.py b/tests/test_tutorial/test_body_schema/test_tutorial001.py index 58b5f891d..15f10653a 100644 --- a/tests/test_tutorial/test_body_schema/test_tutorial001.py +++ b/tests/test_tutorial/test_body_schema/test_tutorial001.py @@ -107,8 +107,8 @@ openapi_schema = { } -def openapi_schema(): - response = client.put("/openapi.json") +def test_openapi_schema(): + response = client.get("/openapi.json") assert response.status_code == 200 assert response.json() == openapi_schema