mirror of
https://github.com/fastapi/sqlmodel.git
synced 2026-01-05 17:09:42 -06:00
✏️ Fix typo, simplify single quote/apostrophe character in "Sister Margaret's" everywhere in the docs (#721)
This commit is contained in:
committed by
GitHub
parent
909286cc03
commit
5c0fca1d96
@@ -13,7 +13,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
|
||||
with TestClient(mod.app) as client:
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
@@ -16,7 +16,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
|
||||
with TestClient(mod.app) as client:
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
@@ -16,7 +16,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
|
||||
with TestClient(mod.app) as client:
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
@@ -55,7 +55,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
assert response.status_code == 404, response.text
|
||||
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
@@ -58,7 +58,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
assert response.status_code == 404, response.text
|
||||
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
@@ -58,7 +58,7 @@ def test_tutorial(clear_sqlmodel):
|
||||
assert response.status_code == 404, response.text
|
||||
|
||||
team_preventers = {"name": "Preventers", "headquarters": "Sharp Tower"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret’s Bar"}
|
||||
team_z_force = {"name": "Z-Force", "headquarters": "Sister Margaret's Bar"}
|
||||
response = client.post("/teams/", json=team_preventers)
|
||||
assert response.status_code == 200, response.text
|
||||
team_preventers_data = response.json()
|
||||
|
||||
Reference in New Issue
Block a user