From 46253b421e6a628df0a5f0fa423019b031e49ad8 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 16 Apr 2025 16:41:04 +0100 Subject: [PATCH] Added disableAdminCC to settings test Signed-off-by: snipe --- tests/Support/Settings.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/Support/Settings.php b/tests/Support/Settings.php index 8680d1c3b1..a4c6e65ccc 100644 --- a/tests/Support/Settings.php +++ b/tests/Support/Settings.php @@ -46,6 +46,13 @@ class Settings ]); } + public function disableAdminCC(): Settings + { + return $this->update([ + 'admin_cc_email' => null, + ]); + } + public function enableMultipleFullCompanySupport(): Settings { return $this->update(['full_multiple_companies_support' => 1]);