From c1093621b1b9c94649fc0c1187a65af731386469 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 6 Nov 2025 08:57:59 +0100 Subject: [PATCH] Bug 40943: Fix t/Koha/Script.t Failed with: Failed test 'Context userenv set correctly with no flags' at t/Koha/Script.t line 31. Structures begin differing at: $got->{session_id} = undef $expected->{session_id} = Does not exist session_id is now part of userenv --- t/Koha/Script.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/Koha/Script.t b/t/Koha/Script.t index 8e5f4e43bd7..767a04cce32 100755 --- a/t/Koha/Script.t +++ b/t/Koha/Script.t @@ -45,6 +45,7 @@ is_deeply( 'desk_name' => undef, 'register_id' => undef, 'register_name' => undef, + 'session_id' => undef, }, "Context userenv set correctly with no flags" ); -- 2.34.1