From da5db1920e3bdba4cc995ce511d81fb97428dc6c Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 5 Dec 2025 17:03:02 +0000 Subject: [PATCH] Use generic email address domains --- tests/Support/Settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Support/Settings.php b/tests/Support/Settings.php index 4ea8ddb8aa..f675c5438a 100644 --- a/tests/Support/Settings.php +++ b/tests/Support/Settings.php @@ -19,7 +19,7 @@ class Settings return new self(); } - public function enableAlertEmail(string $email = 'notifications@afcrichmond.com'): Settings + public function enableAlertEmail(string $email = 'notifications@example.org'): Settings { return $this->update([ 'alert_email' => $email, @@ -46,7 +46,7 @@ class Settings ]); } - public function enableAdminCC(string $email = 'cc@example.co'): Settings + public function enableAdminCC(string $email = 'cc@example.org'): Settings { return $this->update([ 'admin_cc_email' => $email,