diff --git a/README.md b/README.md index fb58691..24d1695 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![Python°](app/static/python.png) -> Production-ready, open-source FastAPI application with PostgreSQL and blazing-fast full-text search. +> Production ready, open-source FastAPI application with PostgreSQL and blazing-fast full-text search #### Overview diff --git a/tests/test_routes.py b/tests/test_routes.py index 8d7a81d..fa14391 100644 --- a/tests/test_routes.py +++ b/tests/test_routes.py @@ -7,12 +7,11 @@ client = TestClient(app) def test_root_returns_welcome_message() -> None: - """GET / should reply in the first person.""" + """GET / should return API metadata.""" response = client.get("/") assert response.status_code == 200 json_data = response.json() assert "meta" in json_data - assert "data" in json_data assert "title" in json_data["meta"] def test_health_returns_ok() -> None: