fix conflicts

This commit is contained in:
harol 2023-09-24 22:43:10 -05:00
commit ec60f7dfb8
1 changed files with 6 additions and 6 deletions

View File

@ -1,8 +1,8 @@
from fastapi import FastAPI, Form
from starlette.testclient import TestClient
app: FastAPI = FastAPI()
app:FastAPI = FastAPI()
@app.post("/testing_alias")
async def check_alias(id_test: int = Form(alias="otherId")):
@ -12,15 +12,15 @@ async def check_alias(id_test: int = Form(alias="otherId")):
async def check_without_alias(id_test:int = Form()):
return {"id_test":id_test}
client = TestClient(app)
def test_without_alias():
response = client.patch("/testing", data={"id_test":1})
response = client.patch("/testing", data={"id_test": 1})
assert response.status_code == 200
assert response.json() == {"id_test":1}
assert response.json() == {"id_test": 1}
def test_get_alias():
response = client.post("/testing_alias", data={"otherId":"1"})
response = client.post("/testing_alias", data={"otherId": "1"})
assert response.status_code == 200
assert response.json() == {"other_id":1}
assert response.json() == {"other_id": 1}