mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-02 20:15:24 +02:00
docs: fix typos (#1665)
* docs: fix typos * typos: fix typos found by `codespell` across the codebase * docs: fix `macOS` spelling * docs: fix `authentification` terminology "Authentification" is not a thing. * docs: fix `localhost` typo in example link * typos: fix in-code typos These are potentially higher risk, but no other mentions of these typos show up in the codebase.
This commit is contained in:
parent
33dad80eff
commit
2e6b877ba9
46 changed files with 66 additions and 66 deletions
|
@ -9,7 +9,7 @@ from tests.utils.fixture_schemas import TestUser
|
|||
|
||||
class Routes:
|
||||
self = "/api/groups/self"
|
||||
memebers = "/api/groups/members"
|
||||
members = "/api/groups/members"
|
||||
permissions = "/api/groups/permissions"
|
||||
|
||||
|
||||
|
@ -25,7 +25,7 @@ def get_permissions_payload(user_id: str, can_manage=None) -> dict:
|
|||
def test_get_group_members(api_client: TestClient, user_tuple: list[TestUser]):
|
||||
usr_1, usr_2 = user_tuple
|
||||
|
||||
response = api_client.get(Routes.memebers, headers=usr_1.token)
|
||||
response = api_client.get(Routes.members, headers=usr_1.token)
|
||||
assert response.status_code == 200
|
||||
|
||||
members = response.json()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue