From 7174fd848a5db9f51e8d0601b886a53093c8f410 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 4 Nov 2025 09:14:53 +0100 Subject: [PATCH] Bug 40943: Fix Script_cron.t Failed with: at t/Koha/Script_cron.t line 28. Structures begin differing at: $got->{session_id} = undef $expected->{session_id} = Does not exist session_id is now part of userenv --- t/Koha/Script_cron.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/Koha/Script_cron.t b/t/Koha/Script_cron.t index b1587150d51..3e0a4ab5b49 100755 --- a/t/Koha/Script_cron.t +++ b/t/Koha/Script_cron.t @@ -42,6 +42,7 @@ is_deeply( 'desk_name' => undef, 'register_id' => undef, 'register_name' => undef, + 'session_id' => undef, }, "Context userenv set correctly with -cron" ); -- 2.34.1