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)