✏️(email) change the quotation marks around role

The quotation marks around role have been changed
to the wrong ones. This commit fixes this issue.
This commit is contained in:
Anthony LC
2024-12-17 17:15:30 +01:00
committed by Anthony LC
parent 1af2ad0ec4
commit d842800df3
10 changed files with 18 additions and 18 deletions

View File

@@ -173,7 +173,7 @@ def test_api_document_accesses_create_authenticated_administrator(via, mock_user
email_content = " ".join(email.body.split())
assert f"{user.full_name} shared a document with you!" in email_content
assert (
f"{user.full_name} ({user.email}) invited you with the role ``{role}`` "
f"{user.full_name} ({user.email}) invited you with the role "{role}" "
f"on the following document: {document.title}"
) in email_content
assert "docs/" + str(document.id) + "/" in email_content
@@ -231,7 +231,7 @@ def test_api_document_accesses_create_authenticated_owner(via, mock_user_teams):
email_content = " ".join(email.body.split())
assert f"{user.full_name} shared a document with you!" in email_content
assert (
f"{user.full_name} ({user.email}) invited you with the role ``{role}`` "
f"{user.full_name} ({user.email}) invited you with the role "{role}" "
f"on the following document: {document.title}"
) in email_content
assert "docs/" + str(document.id) + "/" in email_content

View File

@@ -406,7 +406,7 @@ def test_api_document_invitations_create_privileged_members(
email_content = " ".join(email.body.split())
assert f"{user.full_name} shared a document with you!" in email_content
assert (
f"{user.full_name} ({user.email}) invited you with the role ``{invited}`` "
f"{user.full_name} ({user.email}) invited you with the role "{invited}" "
f"on the following document: {document.title}"
) in email_content
assert "My brand name" in email_content
@@ -536,7 +536,7 @@ def test_api_document_invitations_create_email_full_name_empty():
email_content = " ".join(email.body.split())
assert f"{user.email} shared a document with you!" in email_content
assert (
f"{user.email.capitalize()} invited you with the role ``reader`` on the "
f"{user.email.capitalize()} invited you with the role "reader" on the "
f"following document: {document.title}" in email_content
)