Fix first test

This commit is contained in:
Colin Goutte 2021-09-22 10:33:41 +02:00
parent 385cfd6fd2
commit ab2c3d9724
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ app = FastAPI()
@app.get("/")
async def read_main():
return {"msg": "hello wrold"}
return {"msg": "Hello World"}
client = TestClient(app)