Skip to content

Commit

Permalink
fix(tests): remove trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-milan committed Jan 8, 2024
1 parent b8883ca commit ed9fcad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def test_patient_creation__minimal(client: AsyncClient, username: str, pas
random_cpf = generate_cpf()

response = await client.post(
"/patients/",
"/patients",
headers={"Authorization": f"Bearer {token}"},
json={
"active": True,
Expand Down Expand Up @@ -71,7 +71,7 @@ async def test_patient_creation__complete(client: AsyncClient, username: str, pa
random_cns = generate_cns()

response = await client.post(
"/patients/",
"/patients",
headers={"Authorization": f"Bearer {token}"},
json={
"active": True,
Expand Down

0 comments on commit ed9fcad

Please sign in to comment.