From 20fa4c39f90394ae1aaf381374e242b2035bb36d Mon Sep 17 00:00:00 2001 From: Godfrey M Date: Wed, 4 Sep 2024 12:26:44 -0700 Subject: [PATCH] adds setEula to support\settings --- tests/Support/Settings.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Support/Settings.php b/tests/Support/Settings.php index 2d499838c2..e171c0ab95 100644 --- a/tests/Support/Settings.php +++ b/tests/Support/Settings.php @@ -121,6 +121,10 @@ class Settings 'ldap_basedn' => 'CN=Users,DC=ad,DC=example,Dc=com' ]); } + public function setEula($text = 'Default EULA text') + { + return $this->update(['default_eula_text' => $text]); + } /** * @param array $attributes Attributes to modify in the application's settings.