This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git
The following commit(s) were added to refs/heads/master by this push:
new 160216b15 [#11645] Fix email subject text for authentication link test
160216b15 is described below
commit 160216b15b118b211de43d62f8bf789e3fc365ac
Author: Carlos Cruz <[email protected]>
AuthorDate: Tue Jun 2 21:01:04 2026 +0000
[#11645] Fix email subject text for authentication link test
---
Allura/allura/tests/functional/test_auth.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Allura/allura/tests/functional/test_auth.py
b/Allura/allura/tests/functional/test_auth.py
index f883b65fd..99934a308 100644
--- a/Allura/allura/tests/functional/test_auth.py
+++ b/Allura/allura/tests/functional/test_auth.py
@@ -3649,7 +3649,7 @@ def test_email_auth_code(self, send_system_mail_to_user):
# Validate the email with the verification link was sent
args, kwargs = send_system_mail_to_user.call_args
assert r.session.get('mode') == 'email_code'
- assert args[1] == f"{config['site_name']} Authentication Code"
+ assert args[1] == f"{config['site_name']} Authentication Link"
assert send_system_mail_to_user.call_count == 1
email_text = send_system_mail_to_user.call_args[0][2]