From ab2c3d9724340f6ac3034177bd5f19966b755a38 Mon Sep 17 00:00:00 2001 From: Colin Goutte Date: Wed, 22 Sep 2021 10:33:41 +0200 Subject: [PATCH] Fix first test --- tests/test_papi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_papi.py b/tests/test_papi.py index d9b293e..5e2f18e 100644 --- a/tests/test_papi.py +++ b/tests/test_papi.py @@ -8,7 +8,7 @@ app = FastAPI() @app.get("/") async def read_main(): - return {"msg": "hello wrold"} + return {"msg": "Hello World"} client = TestClient(app)