diff --git a/scripts/test/Log.t b/scripts/test/Log.t index 8992598161..0131ba6698 100644 --- a/scripts/test/Log.t +++ b/scripts/test/Log.t @@ -1,7 +1,7 @@ # -- # OTOBO is a web-based ticketing system for service organisations. # -- -# Copyright (C) 2019-2024 Rother OSS GmbH, https://otobo.de/ +# Copyright (C) 2019-2024 Rother OSS GmbH, https://otobo.io/ # -- # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software @@ -30,6 +30,13 @@ use Kernel::System::UnitTest::RegisterDriver; # Set up $Kernel::OM subtest 'GetLogEntry() after Log()' => sub { $Kernel::OM->ObjectsDiscard; # start on a clean slate + my $Helper = $Kernel::OM->Get('Kernel::System::UnitTest::Helper'); + $Helper->ConfigSettingChange( + Valid => 1, + Key => 'MinimumLogLevel', + Value => 'info', + ); + my $ExpectedInfo = '🌨'; my $ExpectedNotice = '⛄ was built'; my $ExpectedError = '⛄ has melted';